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

body {
    width: 100%;
    height: 100vh;
    background-image: url('./img/img.jfif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

label {
    color: grey;
}

input,
textarea {
    background-color: lightgray;
    border-radius: 5px;
    border: none;
    padding: 10px;
}

.form-container {
    background-color: white;
    width: 50%;
    padding: 20px 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-title h2 {
    text-transform: uppercase;
    font-family: cursive;
    font-weight: 900;
}

.form-input-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-inputs-cont {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.form-input-extra {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
}

.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-btn-container {
    display: flex;
    justify-content: center;
}

.form-btn-container button {
    background-color: green;
    padding: 12px 24px;
    border: 2px solid green;
    color: none;
    font-family: cursive;
    cursor: pointer;
    border-radius: 5px;
    color: white;
}

.form-btn-container button:hover {
    background-color: transparent;
    border: 2px solid green;
    color: green;
}

@media screen and (max-width: 700px) {
    body {
        padding: 20px;
    }

    .form-container {
        width: 100%;
    }

    .form-inputs-cont {
        flex-direction: column;
    }

    .form-input-extra {
        width: 100%;
    }

    .form-container {
        padding: 20px;
    }
}