﻿/* General card styling for authentication pages */
.card {
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

    /* Header strip for card */
    .card .bg-primary-subtle {
        background-color: #e7f1ff;
        padding: 1rem 1.5rem;
    }

    /* Title text in card header */
    .card .text-primary h5,
    .card .text-primary h6 {
        margin: 0;
        font-weight: 600;
    }

.avatar-title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 24px;
    background-color: #f5f5f5;
}

/* Alert styling */
.alert-success {
    background-color: #d1f7e8;
    color: #0f5132;
    border-color: #badbcc;
}

/* Form input styling */
.form-control {
    border-radius: 6px;
    box-shadow: none;
    transition: border-color 0.2s ease-in-out;
}

    .form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
    }

/* Buttons */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    border-radius: 6px;
}

    .btn-primary:hover {
        background-color: #0b5ed7;
        border-color: #0a58ca;
    }

/* Text links */
.text-primary {
    color: #0d6efd !important;
}

.fw-medium {
    font-weight: 500;
}

/* Footer text */
.mt-5.text-center p {
    margin-bottom: 0.25rem;
    color: #6c757d;
    font-size: 14px;
}

/* Email verification message */
#resendMessage {
    color: #198754;
    font-size: 14px;
}

/* Notification styles if using toastr or custom alerts */
.notification-success {
    color: #198754;
}

.notification-danger {
    color: #dc3545;
}
