* {
    margin: 0px;
    padding: 0px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body, html {
    width: 100vw;
    height: 100vh;
    background-color: whitesmoke;
}

.container {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.header1 {
    display: grid;
    justify-content: center;
}
.header {
    display: flex;
    align-items: center;
}


.img {
    width: 70px;
    height: 70px;
}

.name_field, .address, .password {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.content {
    background-color: white;
    margin: 1rem;
    padding: 1rem;
    border-radius: .5rem;
    width: 600px;
}

.name_field, .address, .phone_number, .password, .email_f1, .verify_f1 {
    margin: .5rem
}


input {
    width: 180px;
    height: 30px;
    border-radius: .5rem;
    padding-left: .5rem;
    padding-right: .5rem
}

input[readonly] {
    background-color: grey;
    color: white;
}

input[type=submit], .submit1 {
    border-radius: .5rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    color: white;   
    background: black;
    width: 100px;
    height: 34px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email_f, .verify_f {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    
}

input.submit {
    border-radius: .5rem;
    width: 300px;
    height: 40px;
    font-weight: 700;
}
.email_field, .otp_field {
    display: flex;
    align-items: center;
}

.footer {
    width: 60px
}


@media only screen and (min-width: 0px) and (max-width: 600px) {
    .name_field, .address, .password {
        gap: 9px;
    }
}