.center-container {
    height: 100vh;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}
.login-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    padding: 30px;
    max-width: 1200px;
    width: 500px;
    height:fit-content;
    position: relative;
}

.form-control:hover {
    border-color: var(--profile-primary, #2E8B57);
}

.form-control:focus {
    outline: none;
    border-color: var(--profile-primary, #2E8B57);
    box-shadow: 0 0 0 4px rgba(46, 139, 87, 0.1);
}

.form-label {
    color: var(--button-hover);
    font-weight: 500;
}
#show-hide-password {
    width: 46px;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 10px 30px;
    width: 100%;
    max-width: 300px;
    align-self: center;
}
#loginForm {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.additional-links {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.btn-link, .login-title {
    color: var(--primary-color);
}
.btn-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}
.mt-2 {
    font-size: 0.8rem;
}