body{
    font-family: Arial, sans-serif;
    background-color: #e9ecef;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.container{
    display: flex;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 800px;
    transition: transform 0.3s;
}
.container:hover{
    transform: scale(1.01);
}
.description{
    background: linear-gradient(135deg,#6a11cb 0%,#2575fc 100%);
    color: wheat;
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.description h2{
   margin-top: 0;
   font-size: 24px;
   color: #FFD700;
   animation: fadeIn 1s ease-in-out;
}
.description p {
    text-align: center;
    font-size: 16px;
    animation: fadeIn 1s ease-in-out;
}
.form-container{
    padding: 40px;
    flex-direction: 1.5;
    display: flex;
    flex-direction: column;
}
h2{
    align-items: center;
    color: #333;
    margin-bottom: 20px;
}
label{
    margin-top: 15px;
    display: block;
    color: #555;
    font-weight: bold;
}
input{
    width: 100%;
    padding: 12px;
    margin: 5px 0 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border 0.3s, box-shadow 0.3s;
}
input:focus{
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
.half-width{
    width: calc(50% - 10px);
    display: inline-block;
}
.password-container{
    display: flex;
    justify-content: space-between;
}
button{
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s tranform 0.2s;
}
button:hover{
    background-color: #218838;
    transform: translateY(-2px);
}