/* ==================== Portal Login UI Styles ==================== */

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #f1f5f9, #e2e8f0);
    margin: 0;
}

.lmis-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    min-height: 100vh;
    background: #f8fafc;
}

.lmis-login-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: 0.3s ease-in-out;
}

.lmis-logo-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.lmis-logo {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    image-rendering: auto;
}


.lmis-login-header h1 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 8px;
    color: #1e293b;
}

.lmis-subtitle {
    font-size: 0.95rem;
    text-align: center;
    color: #64748b;
    margin-bottom: 25px;
}

.lmis-form-group {
    margin-bottom: 20px;
}

.lmis-form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #1e293b;
}

.lmis-form-input,
.lmis-form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #f9fafb;
    transition: border-color 0.2s;
}

.lmis-form-input:focus,
.lmis-form-select:focus {
    border-color: #3b82f6;
    outline: none;
}

.lmis-form-hint {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 5px;
}

.lmis-btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
}

.lmis-btn-primary {
    background-color: #2563eb;
    color: white;
    transition: background-color 0.3s;
}

.lmis-btn-primary:hover {
    background-color: #1e40af;
}

.lmis-link {
    background: none;
    border: none;
    color: #2563eb;
    font-size: 0.9rem;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 15px;
    display: inline-block;
}

.lmis-alert {
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.lmis-alert-error {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fca5a5;
}

.lmis-otp-actions {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
