/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Poppins", sans-serif;
}

body{
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:20px;

    background:#8ec5fc;
    background-image:linear-gradient(135deg,#8ec5fc 0%, #510753 100%);
}

/* ================= CONTAINER ================= */

.container{
    width:100%;
    max-width:500px;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);

    border-radius:25px;

    padding:35px 30px;

    color:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* ================= TITLE ================= */

.container h1{
    text-align:center;

    font-size:32px;

    margin-bottom:30px;

    letter-spacing:2px;
}

/* ================= INPUT ================= */

.input-box,
.input-textarea,
.input-img{
    width:100%;
    margin-bottom:20px;
}

.input-box input,
.input-box select,
.input-textarea textarea{
    width:100%;

    border:none;
    outline:none;

    background:transparent;

    border:2px solid rgba(255,255,255,0.3);

    border-radius:18px;

    color:#fff;

    font-size:15px;

    padding:15px 18px;
}

/* ================= PLACEHOLDER ================= */

.input-box input::placeholder,
.input-textarea textarea::placeholder{
    color:rgba(255,255,255,0.8);
}

/* ================= SELECT ================= */

.input-box select{
    appearance:none;
    cursor:pointer;
}

.input-box select option{
    color:#000;
}

/* ================= TEXTAREA ================= */

.input-textarea textarea{
    resize:none;
    min-height:120px;
}

/* ================= FILE ================= */

.input-img{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.input-img label{
    font-size:14px;
    font-weight:500;
}

.input-img input[type=file]{
    background:rgba(255,255,255,0.1);

    border-radius:15px;

    padding:12px;

    color:#fff;

    cursor:pointer;
}

/* ================= BUTTON ================= */

.btn{
    width:100%;

    height:55px;

    border:none;
    outline:none;

    border-radius:35px;

    background:#fff;

    color:#333;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:0.3s;
}

.btn:hover{
    background:#f1f1f1;
    transform:translateY(-2px);
}

/* ================= TABLET ================= */

@media screen and (max-width:768px){

    .container{
        max-width:550px;
        padding:30px 25px;
    }

    .container h1{
        font-size:28px;
    }
}

/* ================= MOBILE ================= */

@media screen and (max-width:480px){

    body{
        padding:12px;
    }

    .container{
        padding:25px 18px;
        border-radius:20px;
    }

    .container h1{
        font-size:26px;
    }

    .input-box input,
    .input-box select,
    .input-textarea textarea{
        font-size:14px;
        padding:14px 15px;
    }

    .btn{
        height:52px;
        font-size:15px;
    }
}