html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fb, #eef2f7);
    margin: 0;
    padding: 0;
}

/* CONTAINER */
.container {
    width: 92%;
    max-width: 450px;
    margin: 60px auto;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

/* TITLE */
h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #1D4ED8;
}

/* INPUTS */
input, select, textarea {
    width: 100%;
    margin: 10px 0;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s;
    outline: none;
    background: #fafafa;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #1D4ED8;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(29,78,216,0.1);
}

textarea {
    height: 120px;
    resize: none;
}

/* BUTTON */
button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: linear-gradient(135deg, #F59E0B, #fbbf24);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245,158,11,0.3);
}

/* TOGGLE */
.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    margin-top: 10px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    background: #d1d5db;
    border-radius: 50px;
    width: 100%;
    height: 100%;
    transition: 0.3s;
}

.slider:before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    background: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: 0.3s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

input:checked + .slider {
    background: #1D4ED8;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

/* TEXT ANON */
p {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

/* HIDDEN FIELDS */
.hidden {
    display: none;
}

/* MOBILE */
@media (max-width: 480px) {
    .container {
        margin: 20px auto;
        padding: 20px;
    }

    h2 {
        font-size: 20px;
    }
}