/* PAGE BACKGROUND */
.create-wrapper {
    min-height: 100vh;
    background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    font-family: sans-serif;
}

/* Inner blurred layer */
.create-inner {
    min-height: 100vh;
    backdrop-filter: blur(3px);
    padding: 2.5rem 1.5rem 3rem;
    display: flex;
    justify-content: center;
}


.create-header {
    display: none;
}

/* FORM CONTAINER */
.create-form {
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.5rem;
    padding: 2rem;
    color: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* TITLE */
.create-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

/* LABELS */
.create-label {
    display: block;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

/* INPUTS */
.create-input,
.create-select,
.create-textarea {
    margin-top: 6px;
    width: 100%;
    padding: 10px;
    background: rgba(0,0,0,0.35);
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.create-select option { color: black; }

/* BUTTON */
.create-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.7);
    background: rgba(59, 130, 246, 0.3);
    color: white;
    cursor: pointer;
    transition: 0.25s;
    backdrop-filter: blur(6px);
}

.create-btn:hover {
    background: rgba(59, 130, 246, 0.5);
}
