body {
    font-family: 'Poppins', sans-serif;
}


.spageer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 96vh;
    gap: 0;
    padding: 20px;
    box-sizing: border-box;
}

.spager-left-img {
    width: 100%;
    height: 892px;
    object-fit: cover;
    border-radius: 10px;
}

.spageer-form-section {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 0;
    box-shadow: none;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    overflow-y: auto;
}

.spageer-logo {
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
}


.spageer-heading {
    font-size: 32px;
    color: #0C1421;
    margin-bottom: 76px;
    font-weight: 600;
}

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

.spageer-label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.spageer-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.spageer-input:focus {
    outline: none;
    border-color: #1e3a8a;
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.spageer-input::placeholder {
    color: #999;
}

.spageer-forgot-password {
    text-align: right;
    margin-bottom: 25px;
}

.spageer-forgot-password a {
    color: #EC1C24;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.spageer-forgot-password a:hover {
    color: #ec1c237e;
}

.spageer-signin-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #EC1C24, #FF4D4F);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 28, 36, 0.3);
}

.spageer-signin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 28, 36, 0.5);
}

.spageer-signin-btn:active {
    transform: translateY(0);
}

.spageer-divider {
    text-align: center;
    margin: 25px 0;
    color: #999;
    font-size: 14px;
}

.spageer-signup-section {
    text-align: center;
}

.spageer-signup-section p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.spageer-signup-section a {
    color: rgba(236, 28, 35, 0.918);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.spageer-signup-section a:hover {
    color: #EC1C24;
}



.otp-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.otp-modal-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.otp-close {
    float: right;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.otp-close:hover {
    color: #333;
}

h2 {
    margin: 20px 0 10px;
    color: #333;
    font-size: 24px;
}

.otp-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

.otp-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

.otp-input {
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s;
    color: #333;
}

.otp-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 8px rgba(102, 126, 234, 0.3);
}

.otp-input:hover {
    border-color: #bbb;
}

.otp-input.filled {
    border-color: #667eea;
    background-color: #f5f7ff;
}

.spager-log-button {
    width: auto;
    padding: 4px 14px;
    background: none;
    color: #EC1C24;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    float: right;
    margin-top: -1rem;
    margin-right: -2rem;
}

.spager-log-button:hover {
    background: none;
    /* fill on hover */
    transform: translateY(-2px);

}

.spager-log-button:active {
    transform: translateY(0);
}

.spager-log-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.otp-message {
    margin-top: 15px;
    font-size: 13px;
    color: #666;
}

.otp-message.success {
    color: #22c55e;
}

.otp-message.error {
    color: #ef4444;
}

@media (max-width: 768px) {
    .spageer-container {
        grid-template-columns: 1fr;
        height: auto;
        padding: 0;
    }

    .spager-left-img {
        display: none;
    }

    .spageer-form-section {
        max-width: 400px;
        margin: 0 auto;
        height: auto;
        min-height: 100vh;
        padding: 2rem;
        justify-content: center;
    }

    .spageer-heading {
        font-size: 28px;
    }
}