* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;

}

/* header start */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vh 10vw;

}

.header button {
    background-color: black;
    color: aliceblue;
    border-radius: 4px;
    margin-right: 20px;
    padding: 5px 10px;

}

.header button:hover {
    color: blue;
}


/* header end */

/* sign_up start */
.sign_up{
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 500px;
    width: 350px;
    border: 2px solid #ecedef;          
    background-color: #ecedef;
    border-radius: 10px;
    margin-left: 600px;
    margin-top: 50px; 
    gap: 30px;
        
}

.sign_up p{
    border: 2px solid ;
    border-radius: 4px;
    text-align: justify;
    width: 250px;
    height: 40px;
    padding-top: 8px;
    padding-left: 8px;
}

.sign_up button{
    width: 250px;
    height: 40px;
    background-color:#c2f578 ;
    border-color: #c2f578;
    border-radius: 4px;
}

.sign_up button:hover{
    color: blue;
}

/* sign_up end */
