*, html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

body {
    background-color: #ffffff;
    color: #121926;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* Left Section - Hero Content */
.login-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 60px;
    background-color: #30baba;
    color: white;
    overflow-y: auto;
}

.login-left-content {
    max-width: 450px;
    width: 100%;
}

.logo-section {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);

}

.hero-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.title2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 50px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.bullet-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
}

.bullet-text {
    flex: 1;
}

.accelerators-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.accelerators-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.accelerators-list {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.accelerator-item {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 'auto';
    height: 55px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    transition: all 0.3s ease;
}

.accelerator-item:hover {
    background-color: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.accelerator-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Right Section - Form */
.login-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    background-color: #f8fafc;
    overflow-y: auto;
}

.login-form-wrapper {
    width: 100%;
    max-width: 400px;
}

.form-header {
    margin-bottom: 32px;
}

.form-header-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #121926;
}

.form-header-description {
    font-size: 15px;
    color: #30baba;
    font-weight: 600;
}

.credit-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #f0fffe;
    border: 1px solid #d4eded;
    padding: 16px 14px;
    border-radius: 6px;
    margin-bottom: 24px;
    width: 100%;
}

.credit-badge {
    font-size: 24px;
    font-weight: 700;
    color: #30baba;
    min-width: 50px;
    flex-shrink: 0;
}

.credit-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.credit-title {
    font-size: 13px;
    font-weight: 600;
    color: #121926;
    margin: 0;
    line-height: 1.4;
}

.credit-desc {
    font-size: 12px;
    color: #697586;
    margin: 0;
    line-height: 1.4;
}

.tab-container {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #e3e8ef;
}

.tab-button {
    flex: 1;
    padding: 14px 0;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 600;
    color: #697586;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-button.active {
    color: #30baba;
    border-bottom-color: #30baba;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #364152;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e3e8ef;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    background-color: white;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #30baba;
    box-shadow: 0 0 0 3px rgba(48, 186, 186, 0.1);
}

.form-input.error {
    border-color: #D84315;
}

.error-message {
    display: none;
    font-size: 12px;
    color: #D84315;
    margin-top: 6px;
}

.error-message.show {
    display: block;
}

.otp-inputs {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.otp-input {
    width: 48px;
    height: 48px;
    padding: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid #e3e8ef;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    transition: all 0.2s ease;
    background-color: white;
}

.otp-input:focus {
    outline: none;
    border-color: #30baba;
    box-shadow: 0 0 0 3px rgba(48, 186, 186, 0.15);
}

.otp-input.error {
    border-color: #D84315;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.otp-timer {
    text-align: center;
    font-size: 13px;
    color: #697586;
    margin-top: 16px;
}

.otp-timer-text {
    color: #30baba;
    font-weight: 600;
}

.resend-link {
    display: inline;
    color: #30baba;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    border: none;
    background: none;
    padding: 0;
    font-size: 13px;
    transition: all 0.3s ease;
}

.resend-link:hover:not(.disabled) {
    text-decoration: underline;
}

.resend-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-button {
    width: 100%;
    padding: 12px 16px;
    background-color: #30baba;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.submit-button:hover:not(:disabled) {
    background-color: #28a3a3;
}

.submit-button:disabled {
    background-color: #cdd5df;
    cursor: not-allowed;
}

.submit-button.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(48, 186, 186, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background-color: #e3e8ef;
}

.divider-text {
    font-size: 12px;
    color: #697586;
    font-weight: 500;
}

.oauth-buttons-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.oauth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.oauth-button {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e3e8ef;
    border-radius: 6px;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    color: #121926;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.oauth-button:hover {
    background: linear-gradient(to bottom, #f8fafc, #f0f4f8);
    border-color: #30baba;
    box-shadow: 0 2px 6px rgba(48, 186, 186, 0.15);
    transform: translateY(-1px);
}

.oauth-button img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-links {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
}

.footer-links a {
    color: #30baba;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.email-display {
    font-size: 13px;
    color: #697586;
    margin-bottom: 24px;
    padding: 12px 14px;
    background-color: #f0fffe;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.email-display-value {
    font-weight: 600;
    color: #364152;
}

.change-email-button {
    background: none;
    border: none;
    color: #30baba;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    padding: 0;
    transition: all 0.3s ease;
}

.change-email-button:hover {
    text-decoration: underline;
}

.login-error-banner {
    color: #c33;
    margin: 10px 0;
    font-size: 14px;
    font-weight: 500;
}

.error-message {
    margin: 0;
}

@media (max-width: 1024px) {
    .login-container {
        grid-template-columns: 1fr;
    }

    .login-left {
        display: none;
    }

    .login-right {
        justify-content: flex-start;
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .login-right {
        padding: 30px 20px;
    }

    .login-form-wrapper {
        max-width: 100%;
    }

    .form-input, .otp-input {
        font-size: 16px;
    }

    .otp-inputs {
        gap: 6px;
    }

    .otp-input {
        width: 44px;
        height: 44px;
    }
}