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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #ffffff;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
}

.login-wrapper {
    width: 100%;
    max-width: 430px;
    height: 100%;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
    overflow: hidden;
}

/* Background Elements */
.shape-top-left {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, rgba(14,165,233,0) 70%);
    border-radius: 50%;
}

.dots {
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(#0ea5e9 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.15;
}

.dots-top-right {
    top: 40px;
    right: 20px;
}

.dots-bottom-left {
    bottom: 120px;
    left: 20px;
}

.waves-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    transform-origin: bottom center;
}

.wave-1 {
    height: 120px;
    background: rgba(14, 165, 233, 0.05);
    transform: scaleX(1.5) translateX(-10%);
}

.wave-2 {
    height: 80px;
    background: rgba(14, 165, 233, 0.08);
    transform: scaleX(1.2) translateX(5%);
}

.wave-3 {
    height: 40px;
    background: rgba(14, 165, 233, 0.15);
}

/* Content */
.content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.logo-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
}

.actions {
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.google-btn {
    width: 100%;
    height: 60px;
    border-radius: 999px;
    background-color: #004bf2;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.google-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.03);
    background-color: #003ec7;
}

.google-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.google-icon {
    width: 24px;
    height: 24px;
}

.footer-text {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.footer-text a {
    color: #0284c7;
    text-decoration: none;
    font-weight: 500;
}

.footer-text a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (min-width: 431px) {
    .login-wrapper {
        border-radius: 24px;
        height: 90vh;
        max-height: 850px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        margin: auto;
    }
    
    body {
        background-color: #f3f4f6;
        align-items: center;
    }
}
