body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to bottom, #B4975A, #f8f4f0);
}

.container {
    display: flex;
    width: 80%;
    max-width: 1000px;
    height: 500px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.image-container {
    flex: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.login-panel {
    flex: 0.6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: white;
    border-left: 2px solid #c89f5d;
}

.login-container {
    width: 100%;
    max-width: 350px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 3px solid #c89f5d;
    border-bottom: 1.5px solid #c89f5d;
    border-left: 1.5px solid #c89f5d;
    border-right: 1.5px solid #c89f5d;
    border-radius: 10px;
    background: white;
}


.logo img {
    /*    max-width: 120px;*/
    /*margin-top: 30px;
    margin-bottom: 20px;
	padding-bottom:20px; */
    text-align: center;
}

h2 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    line-height: 24px;
}

.input-group {
    width: 100%;
    margin-bottom: 10px;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.input-group span {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
}

.input-field {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-btn {
    width: 100%;
    padding: 10px;
    background-color: #B4975A;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 5px;
    font-size: 16px;
}

    .login-btn:hover {
        background-color: #a67c44;
    }

.forgot-password {
    font-size: 12px;
    color: gray;
    margin-top: 10px;
}

.credential-info {
    font-size: 12px;
    color: gray;
    margin-top: 10px;
}
.otp-input-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 5px 0;
}

.otp-box {
    width: 22px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.verify-btn {
    width: 100%;
    padding: 10px;
    background-color: #B4975A;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

    .verify-btn:hover {
        background-color: #a67c44;
    }

.resend-btn {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: white;
    border: 2px solid #B4975A;
    color: #c89f5d;
    border-radius: 5px;
    font-size: 14px;
    cursor: not-allowed;
}
    .resend-btn:disabled {
        cursor: not-allowed;
        opacity: 0.6;
    }
.center {
    text-align: center;
}

.w80p {
    width: 80%;
}
.w90p {
    width: 90%;
}
.w95p {
    width: 95%;
}
.m-t-10 {
    margin-top: 10px;
}
.m-t-20 {
    margin-top: 20px;
}
.m-t-30 {
    margin-top: 30px;
}
.m-t-40 {
    margin-top: 40px;
}
.m-t-50 {
    margin-top: 50px;
}
.m-t-100 {
    margin-top: 100px;
}
.m-t-200 {
    margin-top: 200px;
}
.m-b-20 {
    margin-bottom: 20px;
}
.m-b-30 {
    margin-bottom: 30px;
}
.m-b-40 {
    margin-bottom: 40px;
}
.m-b-50 {
    margin-bottom: 50px;
}