*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}


body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #333;
    padding: 20px;
}

/* header {
    padding:10px 20px;
    background-color: #f5f5f5;
} */

header {
    padding: 20px;
    background-color: #f5f5f5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    /* justify-content: flex-start; */
    /* background-color: #ffffff;
    margin-bottom: 10px; */
}


.logo-image{
    width:200px;
    height: auto;
    margin-right: 10px;
}


.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    text-transform:capitalize;
    text-decoration:none;
}

main{
    max-width:400px;
    margin: 30px auto;
    padding: 0 20px;
    background-color: #ffffff;
}


.signup-link {
    text-align: center;
    font-size: 0.9rem;
    color:#333;
    background-color: #f5f5f5;
    padding: 10px 0;
}


.signup-link a{
    color:#007bff;
    text-decoration: none;
    font-weight: bold;
}


.signup-link a:hover{
    text-decoration: underline;
}


.signin-form{
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.form-group {
    display:flex;
    flex-direction: column;
    gap:10px;
}


.form-group input,.form-group select, .form-group textarea {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius:5px;
    background-color:#fff;
    font-size: 1rem;
}


.signin-form {
    border: none;
    box-shadow: none;
}


.submit-btn {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-btn:hover{
    background-color: #0056b3;
}

.otp-form .submit-btn,
.request-otp-form .submit-btn {
    display: block; /* Stack buttons vertically */
    margin-bottom: 10px; /* Add gap below the buttons */
}

.admin-link {
    font-size: 0.9rem;
}

.admin-link a {
    /* color: #007bff; */
    text-decoration: none;
    font-weight: bold;
}

.admin-link a:hover {
    color:#007bff;
    text-decoration: none;
}