* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f7fa;
}

.login-card {
    width: 90%;
    max-width: 400px;
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

p {
    color: #666;
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 13px;
}

.google-btn {
    width: 100%;
    border: 1px solid #ddd;
    background: white;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.2s;
}

.google-btn:hover {
    background: #f8f8f8;
}

.google-btn img {
    width: 22px;
}

.terms {
    margin-top: 13px;
    font-size: 10px;
    color: #777;
}