/* /data/nginx-proxy/data/oauth_templates/style.css */

*, *::before, *::after {
    box-sizing: border-box;
}

@font-face {
    font-family: 'AmpowrFont';
    src: url('/oauth2/assets/font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'AmpowrFont', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0b0f19;
    color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px 0;
}

.login-card {
    background: #53ba63;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 380px;
    width: calc(100% - 32px); 
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-wrapper {
    margin-bottom: 2rem;
}

.logo-wrapper img {
    max-width: 160px;
    height: auto;
    display: block;
    margin: 0 auto;
}

h1 { 
    font-size: 1.4rem; 
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff; 
    letter-spacing: -0.02em;
}

p { 
    color: #ffffff; 
    font-size: 0.9rem; 
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 2.5rem; 
    opacity: 0.9;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15); 
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #ffffff;
    text-decoration: none;
    padding: 0.85rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, transform 0.1s ease;
}

.btn-google:hover { 
    background: rgba(0, 0, 0, 0.25);
}

.btn-google:active {
    transform: scale(0.98);
}