body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: grey;
    height: 100%;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
}

.vertical-container {
    width: 400px;
    margin: 100px auto;
    padding: 20px;
    border: 1px solid grey;
    border-radius: 50px;
    background-color: #fff;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

h3 {
    text-align: center;
    margin: 1vh;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.form-control {
    padding: 10px;
    margin-bottom: 10px;
    background: transparent;
    border: none;
    border-bottom: 1px solid grey;
    outline:none;
    box-shadow:none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.form-control::placeholder {
    color: lightgrey;
}

.form-control:focus {
    border: none;
    box-shadow: none;
}

.input-group {
    width: 83%;
}

.input-group-text {
    border-bottom-right-radius: 0;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-top: 3vh;
}

.checkbox-label {
    display: flex;
    align-items: center;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 5px;
}

.fabutton {
    background: none;
    padding: 0px;
    border: none;
}

.input-group-text {
    background-color: white;
    border: none;
    border-bottom: 1px solid grey;
}

/* Optional: Add responsive design */
@media (max-width: 480px) {
    .container {
        width: 90%;
    }
}

.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
    font-size: 18px;
}

.image-text {
    color: white;
    font-size: 20px;
}

.error {
    color: red;
    margin-top: 1rem;
}