:root {
    --dusty-peach: #e8a87c;
    --soft-coral: #f7d1ba;
    --warm-brown: #a38f84;
    --dark-charcoal: #333333;
    --off-white: #f9f5f2;
}

/* Auth Layout */
.auth-layout {
    background-color: var(--off-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 20px;
}

.auth-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Brand Styling */
.auth-brand .brand-icon {
    font-size: 3rem;
    color: var(--dusty-peach);
    margin-bottom: 0.5rem;
}

.auth-brand .brand-title {
    color: var(--warm-brown);
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Form Elements */
.auth-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.auth-card-header {
    background-color: var(--dusty-peach);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.auth-card-body {
    padding: 2rem;
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.form-control:focus {
    border-color: var(--dusty-peach);
    box-shadow: 0 0 0 0.25rem rgba(232, 168, 124, 0.25);
}

.btn-primary {
    background-color: var(--dusty-peach);
    border-color: var(--dusty-peach);
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #d9976a;
    border-color: #d9976a;
}

/* Background Elements */
.auth-bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bg-peach-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(232, 168, 124, 0.1);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.bg-coral-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(247, 209, 186, 0.2);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
}

.bg-brown-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(163, 143, 132, 0.1);
    border-radius: 50%;
    top: 50%;
    right: 20%;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .auth-container {
        padding: 1.5rem;
    }
    
    .auth-brand .brand-icon {
        font-size: 2.5rem;
    }
    
    .auth-card-body {
        padding: 1.5rem;
    }
}