/* assets/css/style.css - Premium Domain Parking */

:root {
    --bg-color: #f8f9fa;
    --text-color: #2d3436;
    --accent-color: #0984e3;
    /* Vibrant Blue */
    --accent-hover: #74b9ff;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --input-bg: #f1f2f6;
    --error-color: #e17055;
    --success-color: #00b894;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1e272e;
        --text-color: #dfe6e9;
        --accent-color: #74b9ff;
        --accent-hover: #0984e3;
        --glass-bg: rgba(45, 52, 54, 0.85);
        --glass-border: rgba(255, 255, 255, 0.05);
        --input-bg: #2d3436;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background: var(--bg-color);
    background-image:
        radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%);
    background-attachment: fixed;
    /* Parallax-ish */
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 900px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    /* Mobile stack */
}

/* Left Content Side */
.info-section {
    flex: 1 1 400px;
    padding: 40px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.brand {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0.7;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    background: linear-gradient(45deg, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.features li::before {
    content: "✓";
    color: var(--success-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Right Form Side */
.form-section {
    flex: 1 1 350px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.02);
}

.form-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #dcdde1;
    background: #ffffff;
    color: var(--text-color);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(9, 132, 227, 0.1);
    background: var(--bg-color);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button.btn-submit {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    background: var(--accent-color);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

button.btn-submit:hover {
    background: var(--accent-hover);
}

/* Alerts */
.alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

/* Captcha Layout */
.captcha-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.captcha-label {
    white-space: nowrap;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0;
}

.captcha-input {
    width: 120px !important;
    text-align: center;
    font-size: 1.2rem;
    padding: 10px;
    font-weight: bold;
}

.text-sm {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 15px;
    text-align: center;
}

/* Thank you page alignment */
.container.center-text {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    align-items: center;
}

.btn-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .info-section {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 30px;
    }

    .form-section {
        padding: 30px;
    }

    h1 {
        font-size: 2rem;
    }
}