/**
 * Welcome Page Styles
 * Clean white design with subtle background shapes
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    background: #f5f7fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Subtle background shapes */
body::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, #0078d4 0%, #00bcf2 100%);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

body::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #8bc34a 0%, #4caf50 100%);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.welcome-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    width: 100%;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0078d4 0%, #00bcf2 100%);
    border-radius: 20px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 120, 212, 0.25);
}

h1 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
}

.brand-prefix {
    color: #0078d4;
    font-weight: 600;
}

.subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.login-btn {
    background: #0078d4;
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.3);
}

.login-btn:hover {
    background: #106ebe;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 120, 212, 0.4);
}

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

.logout-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout-message::before {
    content: "✓";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    margin-right: 12px;
    line-height: 24px;
    font-weight: bold;
}

.footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-size: 13px;
    color: #999;
}

.environment-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.env-localhost {
    background: #8bc34a;
    color: white;
}

.env-production {
    background: #0078d4;
    color: white;
}
