* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: #171821;
            color: #e0e6ed;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 600;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .login-container {
            background: #21222d;
            border-radius: 12px;
            padding: 48px;
            width: 100%;
            max-width: 480px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            border: 1px solid #2d3548;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 32px;
            height: 60px;
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .logo-icon img {
            width: 44px;
            height: 44px;
            display: block;
        }

        .logo-text {
            font-size: 32px;
            font-weight: 700;
            color: #EA7C69;
            line-height: 1;
            font-family: 'Montserrat', sans-serif;
            transform: translateY(-7px);
        }

        .login-title {
            text-align: center;
            font-size: 24px;
            color: #e0e6ed;
            margin-bottom: 24px;
            font-weight: 600;
        }

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

        .oauth-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 14px 20px;
            background: #2d3548;
            border: 1px solid #3d4458;
            border-radius: 8px;
            color: #e0e6ed;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .oauth-btn:hover {
            background: #363b4e;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .oauth-icon {
            width: 20px;
            height: 20px;
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 24px 0;
            color: #6b7280;
            font-size: 13px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #3d4458;
        }

        .divider::before {
            margin-right: 16px;
        }

        .divider::after {
            margin-left: 16px;
        }

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

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

        .form-input {
            width: 100%;
            padding: 14px 16px;
            background: #171821;
            border: 1px solid #3d4458;
            border-radius: 8px;
            color: #e0e6ed;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            transition: all 0.2s;
        }

        .form-input:focus {
            outline: none;
            border-color: #ea7c69;
            box-shadow: 0 0 0 3px rgba(234, 124, 105, 0.1);
        }

        .password-wrapper {
            position: relative;
        }

        .password-toggle {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #6b7280;
            cursor: pointer;
            font-size: 13px;
            padding: 4px 8px;
            transition: color 0.2s;
        }

        .password-toggle:hover {
            color: #ea7c69;
        }

        .captcha-box {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;                    
            background: transparent;       
            border: none;                  
            border-radius: 0;              
            margin-bottom: 20px;
        }

        .captcha-checkbox {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: #ea7c69;
        }

        .captcha-label {
            color: #9ca3af;
            font-size: 14px;
            font-weight: 500;
        }

        .login-btn {
            width: 100%;
            padding: 14px 20px;
            background: #ea7c69;
            border: none;
            border-radius: 8px;
            color: #171821;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            margin-bottom: 16px;
        }

        .login-btn:hover {
            background: #ff8b77;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(234, 124, 105, 0.3);
        }

        .signup-btn {
            width: 100%;
            padding: 14px 20px;
            background: #2d3548;
            border: 1px solid #3d4458;
            border-radius: 8px;
            color: #e0e6ed;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            margin-bottom: 20px;
        }

        .signup-btn:hover {
            background: #363b4e;
            transform: translateY(-2px);
        }

        .login-links {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .login-link {
            color: #6b7280;
            font-size: 13px;
            text-decoration: none;
            transition: color 0.2s;
            font-weight: 500;
        }

        .login-link:hover {
            color: #ea7c69;
        }

        .login-error {
            padding: 12px 16px;
            background: rgba(234, 124, 105, 0.1);
            border: 1px solid #ea7c69;
            border-radius: 8px;
            color: #ea7c69;
            font-size: 14px;
            margin-top: 16px;
            text-align: center;
        }

        .login-success {
            padding: 12px 16px;
            background: rgba(76, 175, 80, 0.1);
            border: 1px solid #4caf50;
            border-radius: 8px;
            color: #4caf50;
            font-size: 14px;
            margin-top: 16px;
            text-align: center;
        }

.logo-centered {
    justify-content: center;
    height: 72px;
    margin-bottom: 24px;
}

.logo-centered .logo-icon {
    width: 44px;
    height: 44px;
    overflow: hidden;
}

.logo-centered .logo-icon img.brand-logo {
    width: 120px;
    height: 120px;
    max-width: none;
    object-fit: contain;
    transform: translateY(6px);
}

.logo-centered .logo-text {
    transform: none;
}

.is-hidden {
    display: none;
}

.resend-verification-button {
    padding: 8px 16px;
    margin-top: 8px;
    background: #ea7c69;
    border: 0;
    border-radius: 6px;
    color: #171821;
    font-weight: 600;
    cursor: pointer;
}
