/* this is sighnup and login page css */

body, h1 {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
body {
    background-color: #f4f4f4;
}
.card-container {
    background-color: #ffffff;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    margin: 50px auto; 
    padding: 60px;
    text-align: center;
    border-radius: 5px;
}
h1 {
    color:tomato;
    text-align : center;
    margin-top : 40px;
    font-size : 35px;
}
form {
    margin: 0 auto;
    text-align: left;
}
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
#regName,
#number,
#regEmail,
#regPassword,
#regConfirmPassword
 {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px; 
    border: 1px solid #ccc;
    border-radius: 4px;
}
#loginEmail,
#loginPassword{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px; 
    border: 1px solid #ccc;
    border-radius: 4px;
}
#login{
    background-color:#ff1500;
    color: #fff;
    width:70px;
    height:30px;
}
#submit,
button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px; 
}
#submit:hover,
button:hover {
    background-color: #0056b3;
}
p a {
    text-decoration: none;
    color: #007BFF;
}
#toggleButton {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 2px;
    margin-top: 30px; 
}
#toggleButton:hover {
    background-color: #1f7a38; 
}
#forgotPasswordForm,
 #otpVerificationForm {
    text-align: center;
}
#forgotPasswordForm {
    width: 20%;
    padding: 15px;
    margin-bottom: 10px; 
    border: 1px solid #ccc;
    border-radius: 4px;
}
#forgotPasswordForm button,
 #otpVerificationForm button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px;
}
#forgotPasswordForm button:hover,
 #otpVerificationForm button:hover {
    background-color: #0056b3;
}
#otpVerificationForm {
  width:20%
}



@media (max-width: 768px) {
    .card-container {
        padding: 20px;
    }
    h1 {
        font-size: 24px;
    }
    #regName,
    #number,
    #regEmail,
    #regPassword,
    #regConfirmPassword,
    #forgotPasswordForm,
    #loginEmail {
        width: 100%;
        height: auto;
    }
    #submit,
    button,
    #toggleButton,
    p a {
        margin-top: 15px;
    }
}




