body {
    background-color: var(--md-sys-color-background);
    color: var(--md-sys-color-on-background);
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: var(--md-sys-color-surface-container-low, #1d1b20);
    color: var(--md-sys-color-on-surface);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
    width: 70%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

h1 {
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.hidden {
    display: none;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.radio-label {
    font-size: 1rem;
    font-weight: 500;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

md-outlined-select {
    width: 100%;
}

md-filled-button {
    width: 100%;
    --md-filled-button-container-height: 48px;
    font-size: 1rem;
}

.credit-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.credit-text {
    font-size: 1rem;
    color: var(--md-sys-color-on-surface-variant);
}

.ittiam-logo {
    width: 48px;
    height: 48px;
}