/* Password Reset and Authentication Styles */
.bg-password-image {
    background: url('../img/undraw_empty.svg');
    background-position: center;
    background-size: cover;
    opacity: 0.8;
}

/* Form Control Styling */
.form-control-user {
    font-size: 0.9rem;
    border-radius: 10rem;
    padding: 1.5rem 1rem;
    transition: all 0.2s ease-in-out;
    border: 1px solid #d1d3e2;
}

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

/* Button Styling */
.btn-user {
    font-size: 0.9rem;
    border-radius: 10rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s;
    letter-spacing: 0.05em;
}

.hover-effect {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.hover-effect:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Card Styling */
.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem 0 rgba(58, 59, 69, 0.15);
    overflow: hidden;
}

.card-body {
    padding: 2rem;
}

/* Text Styling */
.text-gray-900 {
    color: #3a3b45;
}

/* Link Styling */
.text-decoration-none {
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.text-decoration-none:hover {
    color: #4e73df;
}

/* Input Group Styling */
.input-group-text.bg-transparent {
    color: #858796;
}

.input-group-prepend {
    margin-right: -1px;
}

/* Additional Spacing */
.mb-5 {
    margin-bottom: 3rem !important;
}
