
.container{
    width: 70%;
    margin:7% auto;
    border: 2px solid black;
    border-radius: 20px;
    box-shadow: 5px 5px 5px 5px grey;
    padding: 50px;
    height: 300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background-color: wheat;
}
p{
    font-size: 20px;
}
form input{
    width: 50%;
    height: 30px;
    font-size: 18px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;   
}
.btn {
  display: block;
  margin: 0 auto ; /* trên:20px; trái/phải: auto để căn giữa */
  padding: 8px 16px;
  margin-left: 70px;
}
.left{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.right{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.right > p {
    text-align: center;
    font-size: 50px;
    font-weight: bold;
}
form a{
    text-decoration: none;
    color: black;
}
form p{
    font-size: 20px;
}
input{
    background: transparent; 
}
button{
    background-color: orangered;
    border-radius: 10px;
    transform: scale(1);
    transition: 0.5s ease;
}
button:hover{
    transform: scale(1.1);
    transition: 0.5s ease;
}

