
body{
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10%;
}
.login{
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    position: relative;
}
p{
    text-align: center;
}
h2 {
    margin-bottom: 10px;
    text-align: center;
}
.mxh{
    display: flex;
    gap: 10px;
    margin: 20px 0;
}
.mxh button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f4f4f4;
    cursor: pointer;
    border-radius: 5px;
    width: 144px;
}
.mxh .icon{
    width: 20px;
    height: 20px;
    margin-left: 8px;
}
.mxh button:hover{
    background-color: #ccc;
    color: black;
    transition-duration: 1s;
}
.or{
    text-align: center;
    color: rgb(112, 112, 107);
    margin-bottom: 8px;
    font-size: 14px;
}
form input{
    width: 278px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: block;
}
.xacnhan{
    margin: 20px 0;
    align-items: center;
    justify-content: center;
}
.xacnhan button{
    align-items: center;
    padding: 10px;
    width: 300px;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
}

.dn{
    background-color: rgb(8, 159, 8);
    color: white;
}
.dn:hover{
    background-color: rgb(2, 111, 2);
    color: white;
    transition-duration: 1s;
}