/* =========================
   SAGA REGISTRATION FORM
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:
    linear-gradient(
        135deg,
        #9a3412 0%,
        #ea580c 45%,
        #fb923c 80%,
        #fff7ed 100%
    );

    min-height:100vh;
    padding:25px;
}

.container{
    max-width:900px;
    margin:auto;
    padding:30px;
}

.form-card{

    background:rgba(255,255,255,.95);
    backdrop-filter:blur(20px);
    border-radius:28px;
    padding:35px;
    box-shadow:
    0 20px 60px rgba(0,0,0,.15);
    border:1px solid rgba(255,255,255,.5);
}

.form-header{
    text-align:center;
    margin-bottom:35px;
}


.form-header h1{
    color:#111827;
    font-size:32px;
    margin-bottom:10px;
}

.form-header p{
    color:#6b7280;
    line-height:1.7;
}

.section-title{

    margin-top:25px;
    margin-bottom:18px;
    font-size:18px;
    font-weight:700;
    color:#ea580c;
    padding-bottom:10px;
    border-bottom:2px solid #fed7aa;
}

.row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.form-group{
    margin-bottom:18px;
}

.container form label{
    display:block;
    margin-bottom:8px;

    color:#374151;

    font-weight:600;
    font-size:14px;
}

.container form input,
.container form select,
.container form textarea{

    width:100%;
    padding:14px 16px;
    border:1px solid #e5e7eb;
    border-radius:14px;
    font-size:15px;
    transition:.25s;
    background:#fff;
    margin-bottom:16px;
}

.container form textarea{
    min-height:120px;
    resize:vertical;
}

.container form input:focus,
.container form select:focus,
.container form textarea:focus{

    outline:none;
    border-color:#ea580c;
    box-shadow:
    0 0 0 4px rgba(234,88,12,.15);

}

.container form input[type=file]{

    background:#fff7ed;
    border:2px dashed #fdba74;
    padding:18px;
}

.upload-box{

    background:#fff7ed;
    border:2px dashed #fdba74;
    border-radius:16px;
    padding:20px;
    text-align:center;
    color:#9a3412;
}

.container form button{

    width:100%;
    border:none;
    cursor:pointer;
    padding:18px;
    border-radius:18px;
    margin-top:15px;
    font-size:16px;
    font-weight:700;
    color:white;
    background:
    linear-gradient(
        135deg,
        #ea580c,
        #f97316
    );

    transition:.3s;
}

.container form button:hover{

    transform:translateY(-2px);
    box-shadow:
    0 12px 30px rgba(234,88,12,.35);
}

.note{

    background:#fff7ed;
    border-left:4px solid #ea580c;
    padding:15px;
    border-radius:12px;
    margin-bottom:25px;
    color:#7c2d12;
}

.success{

    background:#dcfce7;
    color:#166534;
    padding:15px;
    border-radius:14px;
    margin-bottom:20px;
}

.error{

    background:#fee2e2;
    color:#991b1b;
    padding:15px;
    border-radius:14px;
    margin-bottom:20px;
}

/* Preview Foto */

.preview-image{

    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #fed7aa;
    display:block;
    margin:15px auto;
}

/* Mobile */

@media(max-width:768px){

    body{
        padding:15px;
    }

    .form-card{
        padding:22px;
        border-radius:22px;
    }

    .row{
        grid-template-columns:1fr;
        gap:0;
    }

    .form-header h1{
        font-size:26px;
    }
}