
*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;

}

body{
    font-family: 'Poppins', sans-serif;
    background-color: rgb(245, 245, 245);
}
/* form */

body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

form{
    width: 600px;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    
    justify-content: center;
}
form h1{
    font-size: 50px;
    margin-bottom: 20px;
}

form input,select,textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 25px;
    border-bottom: 2px solid rgb(200, 200, 200);
    cursor: pointer;
outline-color:red;
}
form label {    
    font-size: 20px;
    margin-bottom: 10px;
    text-align: left !important;
}
