body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../img/background.jpg'); /* Replace with your background image URL */
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.login-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding-right: 20px;
}

.login-box {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    width: 100%;
}

.login-box h2 {
    margin: 0 0 20px;
    text-align: center;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
}

.input-group input,
.otp-inputs input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.otp-group {
    text-align: center;
}

.otp-inputs {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.otp-digit {
    width: 22%;
    padding: 10px;
    font-size: 20px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
    margin-right: 5px; /* Adding space between the boxes */
}

.otp-digit:last-child {
    margin-right: 0; /* Remove margin for the last digit */
}

.otp-digit:focus {
    border-color: #2980b9; /* Highlighted border color when focused */
    outline: none;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #2980b9;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 10px;
}

button:hover {
    background-color: #3498db;
}

@media (max-width: 768px) {
    .login-container {
        justify-content: center;
        padding: 0 20px;
    }
}



.phone-input-container {
    display: flex;
    align-items: center;
    position: relative;
}

.country-code {
    background-color: #f0f0f0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    font-weight: bold;
}

.separator {
    background-color: #f0f0f0;
    padding: 10px 5px;
    border: 1px solid #ccc;
    border-left: none;
    font-size: 16px;
    border-radius: 0;
}

#mobileNumber {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 0 4px 4px 0;
    transition: border-color 0.3s ease;
}

#mobileNumber:focus {
    border-color: #2980b9; /* Highlighted border color when focused */
    outline: none;
}

.valid-tick {
    position: absolute;
    right: 10px;
    font-size: 20px;
    color: green;
    display: none; /* Hidden by default */
}

.img-logo{
    width:50%;
    margin-bottom: 5px;
}


.loader-style {
    display: none;
    width: 200px;
    height: 200px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2px;
    z-index: 100000;
}

.loader-img-style {
    width: 50%;
    height: auto;
}