:root {
    --md-sys-color-primary: #6750a4;
    --md-sys-color-on-primary: #ffffff;
    --md-sys-color-surface: #fef7ff;
    --md-sys-color-on-surface: #1d1b20;
    --md-sys-color-outline: #79747e;
    --md-sys-color-secondary: #625b71;
    font-family: 'Roboto', system-ui, -apple-system, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--md-sys-color-surface);
    color: var(--md-sys-color-on-surface);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 600px;
    padding: 24px;
}

.logo {
    width: 250px;
    height: auto;
    margin-bottom: 48px;
    display: block;
}

.card {
    position: relative;
    background-color: white;
    border-radius: 28px;
    padding: 40px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.headline {
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

.body-text {
    font-size: 1rem;
    color: var(--md-sys-color-secondary);
    margin: 0;
    line-height: 1.5;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

@media (min-width: 600px) {
    .input-group {
        flex-direction: row;
        align-items: flex-start;
    }
    
    md-outlined-text-field {
        flex: 1;
    }

    md-filled-button {
        margin-top: 4px; /* Align with text-field top */
    }
}

md-outlined-text-field {
    --md-outlined-text-field-container-shape: 12px;
}

md-filled-button {
    --md-filled-button-container-shape: 12px;
    height: 56px;
}

footer {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-icon {
    text-decoration: none;
    color: var(--md-sys-color-secondary);
    transition: transform 0.2s, color 0.2s;
}

.social-icon:hover {
    color: var(--md-sys-color-primary);
    transform: translateY(-2px);
}

.footer-text {
    font-size: 0.8rem;
    color: var(--md-sys-color-outline);
    margin: 0;
}
