body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}
.logo {
    width: 100%;
    padding: 0 170px;
    box-sizing: border-box;
}
.container{     
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    border: 5px solid #3c3c3c;
    border-radius: 15px;
    background-color: #fff;

}
.input_div{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80%;
}
.btn_div{
    display: flex;
    flex-direction: column;
    width: 80%;
    margin-bottom:30px;
    
}
.btn_div button {
    cursor: pointer;
}

input[type=text]{
    height: 20px;
    margin-top:5px;
    background-color: #f4f4f4;
    border:1px solid #f4f4f4;
    border-radius: 5px;
    font-size:12px;
    padding: 10px 10px 5px 20px;
}
input[type=password]{
    height: 20px;
    background-color: #f4f4f4;
    border: 1px solid #f4f4f4;
    border-radius: 5px;
    font-size: 12px;
    padding: 10px 10px 5px 20px;
}
button{
    font-size: 15px;
}
.login_btn{
    height: 40px;
    margin-bottom: 10px;
    margin-top:30px;
    background-color: #3c3c3c;
    border:1px solid #3c3c3c;
    border-radius: 5px;
    color: #f4f4f4;
}
.sign_btn{
    height: 40px;
    background-color: #ededed;
    border:1px solid #ededed;
    border-radius: 5px;
}
form{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -30px;
}
.haed_div{
    margin-top: 30px;
}