/* Background gradient */
/*body {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    
}*/

/* Card style */
.card {
    background: #fff;
    border: none;
    border-radius: 1rem;
}

/* Inputs */
input.form-control {
    border-radius: 0.5rem;
    transition: all 0.3s;
}

input.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 117, 252, 0.25);
    border-color: #2575fc;
}

/* Buttons */
.btn-primary {
    border-radius: 0.5rem;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-outline-secondary:hover {
    background-color: #f0f0f0;
}

/* CAPTCHA Image */
#captchaImage {
    height: 50px;
    cursor: pointer;
}

/* Password toggle button */
.input-group .btn {
    border-radius: 0 0.5rem 0.5rem 0;
}
