* {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: #f6f7f8;
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-wrapper {
    background: #fff;
    padding: 20px;
    width: 100%;
    max-width: 420px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    text-align: center;
}

.logo {
    height: 80px;
    margin-bottom: 1px;
}

h1 {
    margin: 0 0 24px;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 8px 8px;
    margin-bottom: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

input:focus {
    outline: none;
    border-color: #00639a;
}

button {
    width: 100%;
    padding: 6px;
    border: none;
    border-radius: 6px;
    background: #00639a;
    color: white;
    font-size: 15px;
    cursor: pointer;
}

button:hover {
    background: #004e78;
}

.links {
    margin-top: 16px;
    font-size: 14px;
}

.links a {
    color: #00639a;
    text-decoration: none;
}

.alert {
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
}

.alert.error {
    background: #ffe5e5;
    color: #8a1f1f;
}

.alert.success {
    background: #e7f7ec;
    color: #1f6f3d;
}
.success-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.success-check {
    width: 32px;
    height: 32px;
}

/* Genbrug signup-knap-stil */
.button.primary {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 26px;
    background: #1e88e5; /* samme blå som signup */
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
}

.button.primary:hover {
    background: #1565c0;
}
.readonly-field {
    margin-bottom: 12px;
    padding: 10px;
    background: #f3f3f3;
    border-radius: 4px;
}

.button.danger {
    background: #e53935;
    margin-top: 10px;
}

.button.danger:hover {
    background: #c62828;
}







.form-row {
    display: flex;
    gap: 8px;
}

.input-zip {
    flex: 0 0 80px;   /* fast, sikker bredde */
}

.input-city {
    flex: 1;
    min-width: 0;     /* VIGTIG: forhindrer overflow */
}
