/* Base styles and layout */
.login-page {
    min-height: 100vh;
    background-color: #f5f5f5;
    background-image: url('../../ambassador/images/BCGR_BUBBLES.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Decorative background bubbles */
.bubble-top-right {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(154, 76, 132, 0.15) 0%,
        rgba(138, 56, 117, 0.08) 50%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.bubble-bottom-left {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(122, 0, 76, 0.12) 0%,
        rgba(93, 54, 201, 0.06) 50%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

/* Header styles */
.login-header {
    width: 100%;
    height: 75px;
    background-color: #7a004c;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 62px;
    width: 72px;
}

/* Main content area */
.content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 20px;
    min-height: calc(100vh - 75px);
}

/* Login card */
.login-card {
    background-color: white;
    border-radius: 20px;
    width: 100%;
    max-width: 625px;
    padding: 60px 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* Typography */
.welcome-title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

.login-description {
    font-size: 16px;
    color: #555;
    text-align: center;
    line-height: 1.5;
    margin: 0;
    max-width: 480px;
}

/* Login button */
.login-button {
    background-color: #9a4c84;
    background: linear-gradient(135deg, #9a4c84 0%, #8a3875 100%);
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 48px;
    border-radius: 32px;
    border: none;
    cursor: pointer;
    height: 50px;
    min-width: 280px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(154, 76, 132, 0.25);
}

.login-button:hover {
    background: linear-gradient(135deg, #8a3875 0%, #7a2965 100%);
    box-shadow: 0 6px 16px rgba(154, 76, 132, 0.35);
    transform: translateY(-1px);
}

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

/* Help text */
.help-text {
    font-size: 15px;
    color: #666;
    text-align: center;
    margin: 0;
}

.support-link {
    color: #5d36c9;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.support-link:hover {
    text-decoration: underline;
    color: #6b1e6e;
}

/* Security text */
.security-text {
    font-size: 14px;
    color: #777;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

/* Mobile responsive styles */
@media (max-width: 640px) {
    .login-card {
        padding: 40px 30px;
        max-width: 100%;
        border-radius: 16px;
        gap: 24px;
    }

    .welcome-title {
        font-size: 28px;
    }

    .login-description {
        font-size: 15px;
    }

    .login-button {
        width: 100%;
        min-width: unset;
        font-size: 15px;
    }

    .help-text {
        font-size: 14px;
    }

    .security-text {
        font-size: 13px;
    }
}

/* Reset default margins and padding */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}
