/* Auth Pages Common Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0b0b0f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    text-align: center;
    padding: 60px;
    background: #121218;
    border-radius: 16px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.1);
    max-width: 500px;
    width: 90%;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff1493, #ff4da6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: #888;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.login-btn {
    background: #ff1493;
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

.login-btn:hover {
    background: #e01185;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 20, 147, 0.4);
}

.ms-logo {
    width: 24px;
    height: 24px;
}

.subtitle {
    color: #666;
    font-size: 14px;
    margin-top: 40px;
}

/* Error pages */
.error-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.email {
    color: #ff69b4;
    font-weight: 500;
}

.error-detail {
    background: #2a1a1a;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-family: monospace;
    text-align: left;
    color: #ff6b6b;
    font-size: 14px;
}

.back-btn {
    background: #ff1493;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #e01185;
    transform: translateY(-2px);
} 