body {
    font-family: Arial, sans-serif;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.7), 
        rgba(0, 0, 0, 0.7)
    ), url("{{ asset('assets/customers/images/image1.png') }}");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Popup form container */
.popup-form {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    width: 350px;
    max-width: 90%;
    position: relative;
}
/* Input fields and select dropdown styling */
.popup-form input,
.popup-form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #fff;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
    background-color: #ececec;

}
.popup-form select {
    appearance: none; /* Remove default browser-specific styles */
    -webkit-appearance: none; /* For Safari */
    -moz-appearance: none; /* For Firefox */
}
.phone-number-container {
    display: flex;
    gap: 10px; /* Space between the two input fields */
}

#country-code {
    width: 60px; /* Set a fixed width for the country code field */
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    background-color:  #ececec; /* Lighter background for read-only field */
}

#mobile {
    flex-grow: 1; /* Allow the main number field to grow */
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}
.otp-container {
    display: flex;
    margin-bottom: 15px;
    gap: 10px;
}

.otp-container input {
    width: 13%;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Get OTP button styling */
.popup-form button {
    width: 60%;
    padding: 10px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    float:right;
    margin-top: 11px;
}

/* Button hover effect */
.popup-form button:hover {
    background-color: #45a049;
}

/* Label styling */
.popup-form label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
    font-weight: 600;
}
.form-footer {
    margin-top: 60px;
    color: #888;
    font-size: 13px;
}
.login-footer {
    margin-top: 10px;
    color: #888;
    font-size: 13px;
}
.login-footer a {
    text-decoration: none;
}
.login-footer a:hover {
    text-decoration: underline; /* optional */
}
p{
    margin-top: 5px;
    margin-bottom: 0px;
}
h5{
    margin-top: 5px;
    margin-bottom: 5px;
}
label{
    font-weight: 50px;
}
.form-group{
    display: block;
}
.form-footer{
    display: block;
}
.form-container {
    display: flex;
    flex-direction: column;
}

#form-container .form-group {
    order: 2;
    margin-right: auto;
}

#form-container .form-footer {
    order: 2;
}
.error-box {
    background-color: #ececec;
    color: #000;
    border: 1px solid #f5c6cb;
    padding: 5px;
    border-radius: 5px;
    margin-top: 10px;
}

.error-box ul {
    margin: 0;
    padding-left: 5px;
}

.error-box li {
    list-style-type: none;
    font-size: 13px;
}

.error-box strong {
    display: block;
    margin-bottom: 5px;
}
.alert-message {
    background-color: #ececec;
    color: #000;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
    font-size: 13px;
    margin: auto;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .popup-form {
        width: 90%;
    }
}

