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

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f0f2f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.create-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 480px;
    overflow: hidden;
}

.create-banner {
    background: linear-gradient(135deg, #4a6bdf 0%, #6a3de8 100%);
    padding: 2rem;
    text-align: center;
    color: white;
}

    .create-banner i {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
        display: block;
    }

    .create-banner h2 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
    }

    .create-banner p {
        font-size: 0.85rem;
        opacity: 0.8;
    }

.create-body {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

    .form-group label {
        font-size: 0.82rem;
        font-weight: 600;
        color: #555;
        display: block;
        margin-bottom: 6px;
    }

.input-wrap {
    position: relative;
}

    .input-wrap i {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: #aaa;
        font-size: 0.9rem;
    }

    .input-wrap input {
        width: 100%;
        padding: 11px 14px 11px 38px;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        font-size: 0.9rem;
        outline: none;
        transition: border-color 0.2s;
    }

        .input-wrap input:focus {
            border-color: #4a6bdf;
        }

.divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 1.25rem 0;
}

.section-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #4a6bdf;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, #4a6bdf, #6a3de8);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: opacity 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .submit-btn:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }
