body,
html {
    height: 100%;
    margin: 0;
    background: url('../images/bg1.jpg') no-repeat center center fixed;
    background-size: cover;
}

.login-container {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
}

.btn-custom {
    background-color: rgb(224, 78, 41);
    color: white;
}

.btn-custom:hover {
    background-color: rgb(201, 63, 29);
    color: white;
}

.img-logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 100px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.main-title {
    color: rgb(224, 78, 41);
}

.main-title::after {
    content: '';
    position: absolute;
    transform: translateX(-50%);
    width: 3em;
    height: 3px;
    background-color: rgb(224, 78, 41);
}

::placeholder {
    font-size: 14px;
    /* Adjust the font size as needed */
}

::-webkit-input-placeholder {
    font-size: 14px;
    /* For WebKit browsers (Chrome, Safari) */
}

:-moz-placeholder {
    font-size: 14px;
    /* For Firefox 18- */
}

::-moz-placeholder {
    font-size: 14px;
    /* For Firefox 19+ */
}

:-ms-input-placeholder {
    font-size: 14px;
    /* For Internet Explorer 10+ */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    /* Disables the spinner in Firefox */
}

.otp-container {
    max-width: 350px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.otp-input {
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-custom {
    background-color: rgb(224, 78, 41);
    color: white;
    width: 100%;
    margin-top: 20px;
}

.btn-custom:hover {
    background-color: rgb(200, 70, 37);
}

.otp-text {
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(to right, #143a49 0%, #5e4c1e 50%, #c43f1e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 3s infinite;
    background-size: 200% 200%;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}