*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
}

body{
    background:#f4f6f9;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
}

.auth-container{
    width:100%;
    max-width:400px;
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}

form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

h2{
    text-align:center;
    color:#1f7a1f;
}

input{
    padding:12px;
    border:1px solid #ccc;
    border-radius:5px;
}

button{
    padding:12px;
    border:none;
    background:#1f7a1f;
    color:white;
    border-radius:5px;
    cursor:pointer;
}

button:hover{
    background:#166616;
}

.otp-section{
    display:flex;
    gap:10px;
}

p{
    text-align:center;
}