body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #333;
}

.container {
    text-align: center;
}

.card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 400px;
    width: 100%;
    display: inline-block;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1c1e21;
}

p {
    font-size: 16px;
    color: #606770;
    margin-bottom: 30px;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.google-btn:hover {
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.google-btn svg {
    margin-right: 12px;
}

.profile-card {
    text-align: center;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #eee;
}

.profile-info {
    text-align: left;
}

.profile-info p {
    margin: 8px 0;
    font-size: 16px;
}

.profile-info strong {
    color: #1c1e21;
    margin-right: 8px;
}

.logout-link {
    display: inline-block;
    margin-top: 25px;
    color: #1877f2;
    text-decoration: none;
    font-weight: 500;
}
