.login-wrapper {
    height: 100vh;
    width: 100vw;
    justify-content: right;
    display: flex;
}

.login-container {
    max-width: 500px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 3;
    min-width: 350px;
}

.login-image {
    background-image: url("../../static/login_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    flex: 9;
    box-shadow: 4px 0 15px rgba(72, 72, 72, 0.25);
}

.login-section {
    display: block;
    width: 80%;
    font-family: 'Lato', sans-serif;

}

.login-section .logo {
    padding: 0;
    padding: 25% 30% 0% 30%;
    margin: auto;
    border: none;
}

.login-section .login-welcome {
    color: #4E4E4E;
    font-weight: 500;
    font-size: 16px;
    font-family: 'Lato', sans-serif;

}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
    padding-top: 16px;
}

.login-form .form-group label {
    text-align: left;
    margin-bottom: 10px;
    font-size: 12px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
    -webkit-font-smoothing: antialiased;
    transition: transform 0.1s ease;
}

.login-form .form-group input {
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #E5E7EB;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 0px 4px 8px rgba(234, 234, 234, 0.35);
}

.login-form input::placeholder {
    color: #E5E7EB;
}

.login-form input:focus {
    color: #000000;
    outline: none !important;
    border-width: 2px;
    border-color: #00A8B1;
    transition: border-color 0.3s ease;
    padding: 10px;
    border-radius: 6px;
}

.login-form .form-group:focus-within label {
    color: #00A8B1;
    transform: translateX(20px) translateY(18px);
    background-color: white;
    display: inline-block;
    width: 90px;
    padding-inline: 3px;
}

.login-form .form-group:focus-within label:last-child {
    width: 60px;
}

.login-form button {
    padding: 12px;
    background-color: #00A8B1;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 4px 8px #9696964c;
    font-family: 'Lato', sans-serif;
    margin-top: 20px;
}

.login-form button:hover {
    background-color: #006d71;
}

.login-form p {
    font-size: 14px;
}

.logo img {
    width: 100%;
    margin-right: 10px;
}
