body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f900; /* Light background for the page */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh; /* Center the form vertically */
}

.form-box {
    background-color: #ffffff; /* White background for the form */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.form-field {
    margin-bottom: 1.5rem; /* Increased margin for better spacing */
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333; /* Dark color for the label */
}

.email-input-container {
    position: relative;
    width: 100%; /* Make the container full width */
}

.email-input-container input {
    width: 100%; /* Full width for input */
    padding: 1rem; /* Uniform padding */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem; /* Larger font size for input */
    box-sizing: border-box; /* Include padding and border in width */
    transition: border-color 0.3s; /* Transition for border color */
}

/* Hover and focus effect for input fields */
.email-input-container input:hover,
.email-input-container input:focus {
    border-color: #4caf50; /* Change border color on hover and focus */
    outline: none; /* Remove outline on focus */
}

.send-otp-button {
    position: absolute;
    right: 0; /* Align the button to the right */
    top: 0; /* Align the button to the top */
    height: 100%; /* Match input height */
    border: none; /* No border */
    background-color: transparent; /* No background */
    color: #4caf50; /* Button text color */
    padding: 0 1rem; /* Add horizontal padding */
    cursor: pointer; /* Pointer cursor */
    font-size: 1rem; /* Adjust font size */
    border-radius: 0 5px 5px 0; /* Match input's border radius on the right */
    transition: color 0.3s; /* Transition effect for hover */
    z-index: 1; /* Ensure button is above the input */
}

/* Change color on button hover */
.send-otp-button:hover {
    color: #388e3c; /* Darker green on hover */
}

.submit-button {
    background-color: #4caf50; /* Green background for the button */
    color: rgb(255, 255, 255); /* White text color */
    border: none;
    padding: 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s; /* Transition for background color */
}

/* Change background on button hover */
.submit-button:hover {
    background-color: #45a049; /* Darker green on hover */
}

p {
    text-align: center;
}

.form-field {
    color: black;
}
