body{
    background-color: #f2f2f2;
    font-family: "Roboto", sans-serif;
}
.main-div{
    width: 340px;
    height: 334px;
    background-color: white;
    border-radius: 6px;
    margin-top: 55px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    flex-direction: column;
}
#logo{
    padding: 22px 0px 0px;
}
h1{
    font-size: 28px;
    font-weight: 500;
}
lable{
    color: grey;
    padding-right: 190px;
    padding-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
}
input{
    background-color: #f2f2f2;
    border: none;
    width: 275px;
    height: 42px;
    padding: 0px 12px;
    border-radius: 4px;
    border: none;
    outline: none;
    border-bottom: 3px solid transparent;
    outline: none;
    transition: all 0.5 ease;
    font-size: 18px;
    font-weight: 500;

}
input:hover{
    border: 1px solid #0fadff ;
}
input:focus{
    border: none;
    border-bottom: 3px solid #0fadff ;
}
#ph{
    text-decoration: none;
    color: #0fadff ;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
}
#ph:hover{
    color: #0396e5;
}
button{
    background-color:#0fadff ;
    padding: 11px 24px 10px 24px;
    border-radius: 20px;
    border: none;
    color: white;
    font-weight: 500;
    margin-top: 20px;
    cursor: pointer;
}
button:hover{
    background-color: #0396e5;
}
.signup-div{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
#signup{
    text-decoration: none;
    padding: 0px 7px;
    color: black;
}
footer{
    background-color: #ffffff;
    padding: 40px 60px;
    border-top: 1px solid #e0e0e0;
}
.footer-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-column{
    min-width: 160px;
    margin-bottom: 30px;
}
h4{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #000;
}
.footer-atb{
    display: block;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    margin: 6px 0;
}
.footer-atb:hover{
    text-decoration: underline;
}
.footer-bottom{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 20px;
}
select{
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}