@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800&display=swap');
*
 {
   
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {

    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0c0ce94d;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
	top: 50;
	left: 50;
    display: flex;
    background-color: #fff;
    padding: 3rem;
}

.form-header {
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
}
.input-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 0;
}

.input-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.1rem;
}

.input-box input {
    margin: 0.6rem 0;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 10px;
    box-shadow: 1px 1px 6px #0000001c;
    font-size: 0.8rem;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.input-box input:hover {
    background-color: #eeeeee75;
}

.input-box input:focus-visible {
    outline: 1px solid #6c63ff;
}

.input-box label,
.gender-title h6 {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000000c0;
}

.input-box input::placeholder {
    color: #000000be;
}

.continue-button button {
    flex-direction: row;
    width: 100%;
    margin-top: 2.5rem;
    border: none;
    background-color: #6c63ff;
    padding: 0.62rem;
    border-radius: 5px;
    cursor: pointer;
}

.continue-button button:hover {
    background-color: #6b63fff1;
}

.continue-button button a {
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 500;
    color: hsl(0, 0%, 0%);
}

input:focus, textarea:focus {

    border-color: hsl(0, 0%, 3%) !important;
}

input:invalid, textarea:invalid {

    border-color: red;
}

input:valid, text area:invalid {

    border-color: green;

}

@media screen and (max-width: 1330px) {
    .form {
        width: 100%;
    }
}

@media screen and (max-width: 1064px) {
   
    .input-group {
        flex-direction: column;
        z-index: 5;
        padding-right: 5rem;
        max-height: 10rem;
        overflow-y: scroll;
        flex-wrap: nowrap;
    }

}