body {
    background-color: #fdfdfd;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}
.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 20px;
}
.login-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.login-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 3px);
    height: calc(100% + 3px);
    z-index: -5;
    border: 1px solid transparent;
    border-radius: 12px;
    background: linear-gradient(45deg, #4d4775, #8578f4, #211f4a) border-box;
}
.login-header {
    text-align: center;
    margin-bottom: 30px;
}
.login-header i {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 15px;
}
.form-floating {
    margin-bottom: 15px;
}
.btn-login {
    width: 100%;
    padding: 10px;
    font-weight: 600;
}
.additional-links {
    margin-top: 20px;
    text-align: center;
}
.footer {
    background-color: #fdfdfd;
    padding: 2rem 0;
    width: 100%;
}
.footer-links a {
    color: rgb(100, 100, 100);
    text-decoration: none;
    margin: 0 10px;
}
.footer-links a:hover {
    color: #0d6efd;
}
.social-icons a {
    color: #6c757d;
    font-size: 1.5rem;
    margin: 0 10px;
}
.social-icons a:hover {
    color: #0d6efd;
}
.copyright {
    color: #1a1a1a;
    font-size: 0.9rem;
}

i img {
    height: 120px;
    padding-bottom: 20px;
    filter: brightness(0);
}
.hide {
    display: none;
}
.checkboxFields a {
    text-decoration: none;
}