/* General Styles */
body {
    background-image: url('/customer/img/bg3.jpg');
    background-size: cover;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
}

.container {
    background-image: url('/customer/img/bg1.jpg');
    background-color: #ffffff;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: auto;
    max-width: 1200px;
    padding: 20px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}


.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: auto;
    margin: auto;
}

.form-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.8);
    padding: 30px;
    width: auto;
    max-width: 500px; /* Fixed width for forms */
    box-sizing: border-box;
    
}

h1 {
    margin-top: 0;
    color: #333;
    font-size: 24px;
    text-align: center;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

button {
    width: auto;
    padding: 10px;
    margin: 5px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

button:active {
    background-color: #004494;
}

a.button {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

a.button:hover {
    background-color: #0056b3;
}
.button-login {
  text-align: center; /* Centers the button horizontally */
}

.button-login button {
  /* Optional: Add any additional styles for the button here */
}
/* OTP Container */
.otp-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* OTP Boxes */
.otp-box {
    width: 40px; /* Adjust width as needed */
    height: 40px; /* Adjust height as needed */
    text-align: center;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    margin: 0 5px; /* Spacing between boxes */
}

/* Styles for Verify Page */
.verify-page {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden; /* Prevent scrolling */
}

.verify-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px; /* Adjust width as needed */
    width: 100%;
    box-sizing: border-box;
}

.verify-container h1 {
    margin-top: 0;
    color: #333;
    font-size: 24px;
    text-align: center;
}

.verify-container label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.verify-container input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.verify-container button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.verify-container button:hover {
    background-color: #0056b3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.verify-container button:active {
    background-color: #004494;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.verify-container .error-message {
    color: red;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .verify-container {
        padding: 15px;
    }
}


/* Responsive Styles */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}
