:root {
    --primary-color: var(--primary-color);
  }
  .input-error {
    border: 1px solid red;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}
    body {
        margin: 0;
        padding: 0;
        background: #f5f7fa;
    }

    .split-page {
        display: flex;
        flex-direction: row;
        min-height: 100vh;
    }

    .split-left,
    .split-right {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2rem;
    }

    .split-left {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
        color: #fff;
        text-align: center;
    }

    .split-left h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .split-left p {
        font-size: 1.1rem;
        line-height: 1.8;
        max-width: 400px;
        margin: 0 auto;
    }

    .split-right {
        background: #ffffff;
    }

    .account-wrapper {
        max-width: 400px;
        width: 100%;
        text-align: center;
    }

    .account-logo img {
        max-width: 150px;
        margin-bottom: 20px;
    }

    .account-form input {
        border-radius: 6px;
        padding: 12px;
        border: 1px solid #ddd;
        width: 100%;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }

    .account-form input:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(25, 108, 110, 0.2);
    }

    .account-item a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: bold;
    }

    .btn--base {
        background: var(--primary-color);
        color: #fff;
        padding: 12px 20px;
        border-radius: 6px;
        width: 100%;
        border: none;
        transition: all 0.3s ease;
    }

    .btn--base:hover {
        background: var(--primary-color);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .forgot-item a {
        font-size: 0.9rem;
        color: var(--primary-color);
        text-decoration: underline;
    }

    .footer {
        text-align: center;
        padding: 1rem 0;
        font-size: 0.9rem;
        color: #777;
        background: #f5f7fa;
        border-top: 1px solid #ddd;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .split-page {
            flex-direction: column;
        }

        .split-left {
            order: 1;
            padding: 1rem;
            text-align: center;
        }

        .split-right {
            order: 2;
            padding: 1rem;
        }

        .split-left h1 {
            font-size: 1.8rem;
        }

        .split-left p {
            font-size: 1rem;
        }

        .account-wrapper {
            margin-top: 1rem;
        }
    }
    .otp-container {
        display: flex;
        justify-content: center;
        gap: 10px; /* Adjust spacing between inputs */
        flex-wrap: wrap; /* Allows wrapping on smaller screens */
    }
    
    .otp-container .otp {
        width: 50px; /* Default width for larger screens */
        height: 50px; /* Default height for larger screens */
        text-align: center;
        font-size: 18px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    
    .otp-container .otp:focus {
        border-color: var(--primary-color); /* Focus color */
        outline: none;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .otp-container {
            gap: 5px; /* Reduce spacing between inputs */
        }
    
        .otp-container .otp {
            width: 40px; /* Adjust width for smaller screens */
            height: 40px; /* Adjust height for smaller screens */
            font-size: 16px; /* Reduce font size for better fit */
        }
    }
    
    @media (max-width: 480px) {
        .otp-container {
            justify-content: space-between; /* Use space efficiently */
        }
    
        .otp-container .otp {
            width: 35px; /* Further reduce width for very small screens */
            height: 35px;
            font-size: 14px;
        }
    }