@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-image: url(images/porsche-back-form.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    position: relative;
    max-width: 450px;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.container header {
    font-size: 1.3rem;
    color: #333;
    font-weight: 500;
    text-align: center;
}

.container .form {
    margin-top: 20px;
}

.form .input-box {
    width: 100%;
    margin-top: 15px;
}

.input-box label {
    color: #333;
}

.form .input-box input, .form .input-box textarea {
    width: 100%;
    outline: none;
    font-size: 1rem;
    color: #707070;
    margin-top: 5px;
    border: 1px solid #fff;
    border-radius: 6px;
    padding: 10px;
    resize: none;
}

.input-box textarea {
    height: 100px;
}

.form .gender-box {
    margin-top: 15px;
}

.gender-box h3 {
    color: #333;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.form .gender-option {
    display: flex;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
}

.form .gender {
    display: flex;
    align-items: center;
    gap: 5px;
}

.gender input {
    accent-color: rgb(118, 128, 126);
    cursor: pointer;
}

.gender label {
    color: #707070;
    cursor: pointer;
}

.form button {
    height: 45px;
    width: 100%;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #323337;
    border-radius: 6px;
}

.form button:hover {
    background: rgb(118, 128, 126);
}

@media screen and (max-width: 500px) {
    .form .gender-option {
        row-gap: 10px;
    }
}