body {
    min-height: 100vh;
}

.login-card {
    border-radius: 15px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-control {
    border-radius: 10px;
    height: 42px;
}

.input-group-text {
    border-radius: 10px 0 0 10px;
    background: #f1f3f9;
    border-right: 0;
    padding-inline: 0.8rem;
}

.form-control:focus {
    box-shadow: 0 0 0 0.15rem rgba(78, 115, 223, .25);
    border-color: #4e73df;
}

.btn-primary {
    border-radius: 10px;
    background: linear-gradient(45deg, #4e73df, #224abe);
    border: none;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.form-check-input:checked {
    background-color: #4e73df;
    border-color: #4e73df;
}

.login-title {
    font-weight: 700;
    color: #224abe;
}

.link-style {
    color: #4e73df;
    transition: 0.2s;
}

.link-style:hover {
    text-decoration: underline;
    color: #224abe;
}

.register-card {
    border-radius: 15px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.input-group-text {
    border-radius: 10px 0 0 10px;
    background: #f1f3f9;
    border-right: 0;
}

.form-control:focus {
    border-color: #4e73df;
    box-shadow: 0 0 0 0.15rem rgba(78, 115, 223, .25);
}

.btn-primary {
    border-radius: 10px;
    background: linear-gradient(45deg, #4e73df, #224abe);
    border: none;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.register-title {
    font-weight: 700;
    color: #224abe;
}

.link-style {
    color: #4e73df;
    transition: 0.2s;
}

.link-style:hover {
    color: #224abe;
    text-decoration: underline;
}

.toggle-password {
    cursor: pointer;
}
