* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f3ef 0%, #e8e4dc 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 35px 30px;   /* Reduced padding */
    max-width: 420px;     /* Reduced width */
    width: 100%;
}


.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo img {
    width: 140px;   /* Perfect balanced size */
    height: auto;
    display: block;
    margin: 0 auto;
}


.logo-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background: linear-gradient(135deg, #6d5d4b, #c4a574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 34px;
    font-weight: bold;
}

h1 {
    color: #4a3f35;
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
}

.subtitle {
    color: #8b7d6b;
    text-align: center;
    margin-bottom: 40px;
    font-size: 15px;
}

.signup-option {
    background: white;
    border: 2px solid #e0d5c7;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-option:hover {
    border-color: #c4a574;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 165, 116, 0.2);
}

.option-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.option-icon {
    width: 50px;        /* increased size */
    height: 50px;
    border-radius: 12px; /* slightly softer corners */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    font-size: 24px;    /* bigger icon */
}


.verified-icon {
    background: #e8f5e9;
}
.gmail-icon {
    background: #e6eefc;   /* soft blue */
}

.option-title {
    font-size: 18px;
    font-weight: 600;
    color: #4a3f35;
}

.option-description {
    color: #8b7d6b;
    font-size: 14px;
    line-height: 1.6;
    margin-left: 55px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    background: #4caf50;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 10px;
    font-weight: 500;
}

.back-link {
    text-align: center;
    margin-top: 20px;
}

.back-link a {
    color: #5f4a2a;
    text-decoration: none;
    font-size: 14px;
}



.back-link a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .container {
        padding: 40px 25px;
    }

    h1 {
        font-size: 24px;
    }
}
/* ── MOBILE IMPROVEMENTS ── */
@media (max-width: 480px) {
  body { padding: 16px; align-items: flex-start; padding-top: 40px; }

  .container { padding: 28px 20px; border-radius: 16px; }

  .logo img { width: 110px; }

  h1 { font-size: 22px; }
  .subtitle { font-size: 14px; margin-bottom: 28px; }

  .signup-option { padding: 18px 16px; margin-bottom: 14px; }

  .option-icon { width: 42px; height: 42px; font-size: 20px; margin-right: 12px; }

  .option-title { font-size: 15px; }

  .option-description { font-size: 13px; margin-left: 54px; }

  .verified-badge { font-size: 11px; padding: 3px 8px; }
}