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

/* Side */
body {
    background-color: var(--third-color);
    font-family: var(--font-primary);
    color: var(--secondary-text);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: var(--third-color);
    width: 100%;
    max-width: 480px;
    padding: 0 2rem;
}

/* Kortet */
.card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    padding: 28px;
    color: var(--secondary-text);
}

/* Overskrift*/
h1 {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
    font-weight: var(--h1-weight);
    font-size: var(--h4-size);
}

/* Labels og inputs */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: .5rem;
}

.form-group input {
    width: 100%;
    height: 50px;
    padding: .75rem;
    background-color: #f2f4f7;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    color: var(--secondary-text);
    font-family: var(--font-primary);
    font-size: var(--text-size);
}

.form-group input:focus {
    outline: none;
    border-color: #cbd5e1;
    background: #eef2f6
}

.row-between {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: .5rem;
}

a.link {
    color: #4f7df0;
    text-decoration: none;
    font-size: .9rem;
}

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

button {
    font-family: var(--font-primary);
    width: 100%;
    height: 50px;
    margin-top: 1rem;
    cursor: pointer;
    background-color: var(--fifth-color);
    color: var(--secondary-text);
    border: none;
    border-radius: 8px;
    font-size: var(--text-size);
    font-weight: 600;
}

button:hover {
    filter: brightness(.98);
}

/* Divider med tekst */
.divider {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #98a2b3;
    font-size: .9rem;
    margin: 16px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #eceff3;
}

/* Google-knap */
.btn-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    padding: .75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
}

.btn-google:hover {
    background: #fafafa;
}

.btn-google img {
    width: 18px;
    height: 18px
}

/* Sekundær tekst nederst */
.muted {
    margin-top: 14px;
    text-align: center;
    color: black;
    font-size: .9rem;
}

.muted a.link {
    color: #4f7df0;
    text-decoration: none;
}

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

/* Dropdown sign-up page */
.form-group select {
    width: 100%;
    height: 50px;
    padding: .75rem;
    background-color: #f2f4f7;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    color: var(--secondary-text);
    font-family: var(--font-primary);
    font-size: var(--text-size);

    /* Optional: remove native browser styling for a cleaner look */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select:focus {
    outline: none;
    border-color: #cbd5e1;
    background: #eef2f6;
}

/* After email verification */
.info-message {
    font-size: 0.875rem;
    margin-top: 4px;
    color: #27717d;
    /* or your primary/green-ish color */
}