body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #f0f2f5;
    font-family: Arial, sans-serif;
}

.form-container {
    background: aliceblue;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

form {
    display: flex;
    flex-direction: column;
}

h2 {
    text-align: center;
    margin-bottom: 10rem;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 
}

label {
    margin-bottom: 0.5rem;
    display: block;
}

input {
    width: 102.5%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    margin-top: 0.5rem;
    padding: 0.75rem;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
    margin-left: 20px;
    margin-right: 20px;
}

button:hover {
    background: #0056b3;
}

.error-message {
    color: red;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.success-message {
    color: green;
    text-align: center;
    font-size: 0.875rem;
    margin-top: 1rem;
} 

.background {
    position: absolute;
    width: 100%; 
    height: 100%;
    background: url('/assets/images/login-background.jpeg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 340px;
    max-width: 500px;
}

.modal-header {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.modal-body input {
    width: 100%;
    margin-bottom: 1rem;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
}

.resendOtp {
    
    display: inline-block; /* Allows padding and other block-level styling */
    text-align: center;
    color: #ffffff; /* Text color */
    background-color: #007bff; /* Background color */
    padding: 10px 40px; /* Padding for button-like appearance */
    text-decoration: none; /* Remove underline from links */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Change cursor to pointer on hover */
    margin-left: 48px;
}

.resendOtp:hover {
    background-color: #004494; /* Darker background on hover */
}

p{
    text-align: center;
}