﻿/*:root {
    --primary: #6C63FF;
    --secondary: #FF6584;
    --accent: #36D1DC;
    --dark: #2A2D3E;
    --light: #F8F9FA;
}*/

:root {
    --primary: #FF3B6A; /* Neon Sushi Pink */
    --secondary: #00D1C1; /* Fresh Aqua Mint */
    --accent: #FFD454; /* Egg Yolk Yellow */
    --dark: #1F1F28;
    --light: #FAFAFC;
    --primary-gradient: linear-gradient(135deg, #FF3B6A, #FF5F87);
    --secondary-gradient: linear-gradient(135deg, #00D1C1, #2BE4D9);
    --accent-gradient: linear-gradient(135deg, #FFD454, #FFE08A);
}

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
}

.full-height {
    height: 100vh;
}

.bg-image {
    background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

    .bg-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(108, 99, 255, 0.7) 0%, rgba(255, 101, 132, 0.7) 100%);
    }

.form-section {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    transition: transform 0.3s ease;
}

    .form-section:hover {
        transform: translateY(-5px);
    }

    .form-section h2 {
        font-weight: 700;
        font-size: 2rem;
        margin-bottom: 1.5rem;
        color: var(--primary);
    }

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary) !important;
}

.form-group {
    margin-bottom: 1.2rem;
}

.btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #5a52e0;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
    }

.btn-secondary {
    background-color: var(--secondary);
    border: none;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        background-color: #e05578;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 101, 132, 0.4);
    }

.card {
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: none;
}

.card-title {
    font-weight: 700;
    color: var(--primary);
}

.form-label {
    font-weight: 500;
    color: var(--dark);
}

.input-group-text {
    background-color: white;
    border-right: none;
}

.form-control {
    border-left: none;
    padding-left: 0;
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 0.25rem rgba(108, 99, 255, 0.25);
    }

.dine-logo {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .dine-logo i {
        margin-right: 10px;
        font-size: 2.2rem;
    }

.tagline {
    text-align: center;
    color: var(--dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

    .feature-list li {
        padding: 8px 0;
        display: flex;
        align-items: center;
    }

    .feature-list i {
        color: white;
        margin-right: 10px;
        font-size: 1.2rem;
    }

.login-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

    .login-link:hover {
        color: #5a52e0;
        text-decoration: underline;
    }

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.text-danger {
    color: var(--secondary) !important;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.left-content {
    z-index: 1;
    position: relative;
    color: white;
    padding: 2rem;
}

.benefits-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}
