* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.login-box {
    background-color: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.login-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #357abd);
}

.warning-banner {
    background-color: #fff3cd;
    color: #856404;
    padding: 12px 15px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 500;
    border: 1px solid #ffeeba;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 5px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #202124;
}

.security-indicator {
    display: flex;
    gap: 10px;
}

.secure-badge, .ssl-badge {
    background-color: #e8f0fe;
    color: #1a73e8;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.login-header {
    margin-bottom: 25px;
}

h1 {
    text-align: center;
    color: #202124;
    margin-bottom: 12px;
    font-size: 1.8rem;
    font-weight: 600;
}

.subtitle {
    text-align: center;
    color: #5f6368;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.4;
}

.login-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.social-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    background: white;
    color: #202124;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-login:hover {
    background-color: #f8f9fa;
    border-color: #c3cfe2;
}

.social-login i {
    font-size: 1.2rem;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #5f6368;
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dadce0;
}

.divider span {
    padding: 0 10px;
}

.input-group {
    margin-bottom: 22px;
}

.password-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.forgot-password-link {
    color: #4a90e2;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password-link:hover {
    color: #357abd;
    text-decoration: underline;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #dadce0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.input-with-icon:focus-within {
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.input-with-icon i {
    position: absolute;
    left: 14px;
    color: #5f6368;
    font-size: 1.1rem;
    pointer-events: none;
}

.input-with-icon input {
    width: 100%;
    padding: 13px 45px 13px 45px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: 48px;
    background: transparent;
}

.input-with-icon input:focus {
    outline: none;
}

.show-password {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: #5f6368;
    cursor: pointer;
    padding: 5px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 40px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.remember-me label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.95rem;
    color: #5f6368;
}

.security-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #5f6368;
    font-size: 0.9rem;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #4a90e2, #357abd);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.login-btn:hover {
    background: linear-gradient(90deg, #357abd, #2a5f9e);
    transform: translateY(-1px);
}

.footer {
    margin-top: 30px;
    text-align: center;
    padding: 0 5px;
}

.security-tips {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: left;
}

.security-tips h3 {
    color: #202124;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 500;
}

.security-tips ul {
    list-style: none;
    padding-left: 0;
}

.security-tips li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5f6368;
    font-size: 0.95rem;
    line-height: 1.4;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: scale(1.05);
}

.trust-badge svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.disclaimer, .warning {
    color: #5f6368;
    font-size: 0.9rem;
    margin-top: 12px;
    line-height: 1.4;
}

.warning {
    color: #d93025;
    font-weight: 500;
}

/* Warning message styles */
.warning-message {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
    animation: fadeIn 0.5s ease;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.warning-header h2 {
    color: #856404;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 500;
}

.warning-content {
    text-align: left;
}

.warning-content p {
    margin-bottom: 18px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.security-checklist, .safe-practices {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 18px;
    border-radius: 8px;
    margin: 20px 0;
}

.security-checklist h3, .safe-practices h3 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.security-checklist ul, .safe-practices ul {
    list-style: none;
    padding-left: 0;
}

.security-checklist li, .safe-practices li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.security-checklist i, .safe-practices i {
    color: #28a745;
    font-size: 1.1rem;
    margin-top: 2px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
} 