/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

/* BACKGROUND */
body {
    min-height: 100vh;
    background: linear-gradient(135deg, #111111, #444444);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* LOGO */
.logo {
    text-align: center;
    margin-bottom: 25px;
}

.logo img {
    max-width: 80%;
    height: auto;
}

/* FORM */
form {
    display: grid;
    grid-template-columns: 1;
    gap: 14px;
}

label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111111;
}

/* INPUTS */
input,
select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
    transition: 0.2s ease;
}

input:focus,
select:focus,
option:focus {
    outline: none;
    border-color: #d2b355;
}




/* BUTTON */
button {
    margin-top: 10px;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: #d2b355;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

button:hover {
    background: #111111;
    transform: translateY(-1px);
	color: #d2b355;
}

/* RESPONSIVE (desktop) */
@media (min-width: 768px) {
    form {
        grid-template-columns: 1 1;
        gap: 16px;
    }

    label,
    input,
    select {
        grid-column: span 2;
    }

    button {
        grid-column: span 2;
    }
}