body{
    padding: 0;
    margin: 0;
    font-family: Verdana,sans-serif,arial;
}            
.form{
    width: 350px;
    height: 400px;
    text-align: center;
    border: 2px solid green;
    border-radius: 10px;
}
#h1{
    font-size: 3.5em;
    color: green;
    font-weight: bold;
    text-align: center;    
}
#intro{
    font-size: .9em;
    text-align: center;
}
#h3{
    font-size: 2em;
    font-weight: bold;
}            
#text,#number,#password{
width: 250px;
padding: 10px;
border: 2px solid #e1e1e1;    
outline: green;
}
#text:focus,#number:focus,#password:focus{
    border-color: green;
}
#ul{
    list-style-type: none;
}
#ul li{
    display: inline;
    font-size: .6em;
    padding: 10px;
    margin-right: 30px;
    color: blue;
}
#ul li a{
    text-decoration: none;
}
#HaveAcc{
    font-size: .6em;
}
#loginBtn{
width: 110px;
padding: 10px;
border: 2px solid green;
background-color: green;
font-weight: bold;
outline: none;    
margin-top: 20px;
color: white;
}
#loginBtn:hover{
    color:black;
    background-color:#f1f1f1;
    border: none;
}
#signupBtn{
width: 110px;
padding: 10px;
border:2px solid #f1f1f1;
background-color: white;
font-weight: bold;
outline: none;
color: black;
margin-top: 20px;    
}
#signupBtn:hover{
    color:white;
    background-color: green;
    border: none;
}
