/* Auth pages */

.cldk-auth-body {
    background-color: #2B2240;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cldk-auth-wrapper {
    width: 100%;
    max-width: 440px;
    padding: 2rem 1rem;
}

.cldk-auth-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.cldk-auth-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #CEB8FF;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.cldk-auth-logo:hover {
    color: #fff;
}

/* Card */
.cldk-auth-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2.25rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.cldk-auth-card h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2B2240;
    margin-bottom: 0.25rem;
}

.cldk-auth-card .cldk-auth-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.75rem;
}

/* Form */
.cldk-auth-card .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2B2240;
}

.cldk-auth-card .form-control {
    border-color: #d1d5db;
    border-radius: 0.5rem;
    padding: 0.6rem 0.85rem;
    font-size: 0.9rem;
    color: #2B2240;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.cldk-auth-card .form-control:focus {
    border-color: #CEB8FF;
    box-shadow: 0 0 0 3px rgba(206, 184, 255, 0.3);
}

/* Primary button */
.cldk-btn-primary {
    background-color: #2B2240;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.15s;
}

.cldk-btn-primary:hover {
    background-color: #3d3160;
    color: #CEB8FF;
}

/* Divider & footer link */
.cldk-auth-divider {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.cldk-auth-divider a {
    color: #2B2240;
    font-weight: 600;
    text-decoration: none;
}

.cldk-auth-divider a:hover {
    color: #CEB8FF;
    text-decoration: underline;
}

/* Alerts */
.cldk-auth-card .alert-danger {
    border-radius: 0.5rem;
    font-size: 0.875rem;
}
