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

/* BODY */
body{
    font-family: "Segoe UI", Arial, sans-serif;
    background: #eef2f7;
    color: #1e293b;
}

/* FORM CONTAINER */
form{
    max-width: 500px;
    margin: 40px auto;
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.08),
        0 2px 8px rgba(0,0,0,0.04);

    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* LABELS */
form label{
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

/* INPUTS + SELECT */
form input,
form select{
    width: 100%;
    padding: 14px;
    border: 1px solid #dbe2ea;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.2s ease;
    background: #f8fafc;
}

/* FOCUS EFFECT */
form input:focus,
form select:focus{
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}

/* BUTTON */
form button{
    margin-top: 10px;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

/* BUTTON HOVER */
form button:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(37,99,235,0.25);
}

/* BUTTON ACTIVE */
form button:active{
    transform: scale(0.98);
}

/* RESPONSIVE */
@media screen and (max-width: 768px){

    body{
        padding: 15px;
    }

    form{
        margin-top: 25px;
        padding: 25px;
    }
}