*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#ffe6f2;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
}

.register-container{
    width:400px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.register-container h2{
    text-align:center;
    color:#ff4081;
    margin-bottom:20px;
}

form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

input,
select{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
}

button{
    padding:12px;
    border:none;
    border-radius:10px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

#sendOTP{
    background:#2196F3;
    color:#fff;
}

#verifyOTP{
    background:#4CAF50;
    color:#fff;
}

#registerBtn{
    background:#ff4081;
    color:#fff;
}

button:disabled{
    background:#ccc;
    cursor:not-allowed;
}

p{
    text-align:center;
    margin-top:15px;
}

a{
    color:#ff4081;
    text-decoration:none;
}

@media(max-width:480px){

.register-container{
    width:95%;
}

}