body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
  
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    /* display: flex; */

}
.textpx{
    font-family: 'Poppins';
}
.loginbox{
       box-shadow:0 10px 30px rgba(0, 0, 0, 0.2) !important;
    border-radius: 15px !important;
}
/* .form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 350px;
    text-align: center;
} */
h2 {
    margin-bottom: 20px;
    color: #333;
}
input, select, button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}
.buttonam {
    background: #ff7e5f;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}
.buttonam:hover {
    background: #e36d50;
}
#verification-section {
    display: none;
    margin-top: 20px;
    animation: fadeIn 0.5s;
}
p {
    margin-top: 15px;
    color: #666;
}
a {
    color: #ff7e5f;
    text-decoration: none;
    font-weight: bold;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}
.buttonam{
    border-radius: 10px !important;
}