* {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 45px;
}

h3 {
    font-size: 25px;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
}

:root {
    /* ======= Brand Color System ======= */
    --primary-color: #ff7b00;         /* Vibrant food orange */
    --secondary-color: #b34700;       /* Dark roasted orange (contrast) */
    --accent-color: #ffb347;          /* Light orange accent for highlights */
    
    /* ======= Text & Background ======= */
    --background-color: #fffaf3;      /* Warm creamy white background */
    --text-color: #2b2b2b;            /* Deep neutral text for readability */
    --text-warning: #ff3b3b;          /* Bold red for alerts */
    --text-success: #2ecc71;          /* Fresh green for success messages */

    /* ======= Borders & Cards ======= */
    --border-color: #e6d5c3;          /* Soft beige border */
    --card-background: #ffffff;       /* Clean card background */
    --card-shadow: rgba(255, 123, 0, 0.2); /* Subtle orange-tinted shadow */

    /* ======= Buttons ======= */
    --button-text: #fff;              /* White text for contrast */
    --button-cancel: #ff4d4d;         /* Strong cancel red */
    --button-active: #ffa41b;         /* Highlighted orange active button */
    --button-hover: #e56700;          /* Slightly darker hover state */

    /* ======= Button Sizes ======= */
    --button-height-large: 60px;
    --button-height-medium: 40px;
    --button-height-small: 25px;
}

/* ===== Hero Section ===== */
.register-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 0 0 80px 80px;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons a {
    margin-right: 15px;
}

.btn-primary {
    background: var(--button-active);
    color: var(--button-text);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--button-hover);
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--button-text);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--secondary-color);
}

.hero-image img {
    max-width: 450px;
    width: 100%;
}

/* ===== Registration Form ===== */
.register-form-section {
    padding: 80px 5%;
    background: var(--background-color);
}

.form-container {
    max-width: 900px;
    margin: auto;
    background: var(--card-background);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px var(--card-shadow);
}

.form-container h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 20px;
}

.form-group input,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

button.btn-primary {
    width: 100%;
    background: var(--primary-color);
    color: var(--button-text);
    font-weight: bold;
    font-size: 16px;
    border-radius: 10px;
    padding: 16px;
    transition: 0.3s;
    cursor: pointer;
}

button.btn-primary:hover {
    background: var(--secondary-color);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .form-group {
        flex-direction: column;
    }
}
