* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    padding: 20px;
    width: 100%;
    max-width: 800px;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.login-card {
    text-align: center;
}

.logomb {
    display: block;
    margin-bottom: 25px;
}

.logomb img {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.logomb img:hover {
    transform: scale(1.05);
}

h1 {
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.3;
}

.google-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.google-login .btn {
    width: 280px;
    font-size: 18px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
    transition: all 0.3s ease;
    background: #dc3545;
    border: none;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.google-login .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
    background: #c82333;
}

.create-account {
    margin-top: 10px;
    color: #505c6c;
    font-size: 0.95rem;
}

.create-account a {
    color: #dc3545;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.create-account a:hover {
    color: #c82333;
    text-decoration: underline;
}

.info-card {
    margin-top: 25px;
}

.info-card h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.info-card p {
    color: #505c6c;
    line-height: 1.8;
    font-size: 1.05rem;
}

.info-card ul {
    list-style-type: none;
    padding-left: 0;
}

.info-card li {
    color: #505c6c;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.info-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .card {
        padding: 25px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .google-login .btn {
        width: 100%;
        font-size: 16px;
    }

    .info-card h2 {
        font-size: 1.5rem;
    }

    .info-card p, .info-card li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .card {
        padding: 20px;
    }

    .logomb img {
        max-width: 150px;
    }
}