body {
    background: #f0f0f0;
    /* font-family: Arial, sans-serif; */
}
.tablet-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../img/tabulaloginbg.jpg');
    
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    flex-direction: column;
}
.tablet-container .alert{
    margin: 20px 0 0 0;
    width: 400px;
    max-width: 400px;
}
.login-screen {
    position: relative;
    width: 25%;
    margin-top:20px;
    max-width: 400px;
    min-width: 280px;
    min-height: 280px;
    background: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-bottom:30px;
}
.logo-container {
    margin-top:120px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.logo-container .logo {
    max-width: 100%;
    max-height: 90px;
    height: auto;
    display: block;
}
.logo-container .logo-small {
    max-width: 70%;
    max-height: 60px;
    height: auto;
    display: block;
}
.copy {
    text-align: center; 
    color: #666;
}
.login-screen h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}
.login-screen input,
.login-screen button,
.login-screen .otp-login {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    font-family: inherit;
}
.login-screen input {
    border: 1px solid #ccc;
}
.login-screen .otp-inputs {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: center;
}
.login-screen .otp-digit {
    width: 40px;
    font-size: 24px;
    text-align: center;
}
.login-screen button {
    border: none;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}
.login-screen button:hover {
    background-color: #0069d9;
}
.login-screen .forgot-password {
    text-align: left;
    margin-top: 10px;
    margin-bottom: 40px;
}
.login-screen .forgot-password a {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
}
.login-screen .forgot-password a:hover {
    text-decoration: underline;
}
.login-screen .otp-login {
    border: 1px solid #007bff;
    background: transparent;
    color: #007bff;
    cursor: pointer;
}
.login-screen .otp-login:hover {
    background-color: #007bff;
    color: #fff;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .login-screen {
        width: 30%;
    }
}
@media (max-width: 992px) {
    .login-screen {
        width: 40%;
    }
}
@media (max-width: 768px) {
    .login-screen {
        width: 60%;
    }
}
@media (max-width: 480px) {
    .login-screen {
        width: 90%;
        padding: 15px;
    }
    .logo-container .logo {
        max-width: 70%;
    }
}