/* Main */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f6f7fb;
    margin: 0;
    padding: 40px 20px;
    color: #333;
}

main {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

h1, h2, h3 {
    color: #1d3557;
}

form {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

label {
    font-weight: bold;
    margin-top: 10px;
}

input, select, textarea {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #457b9d;
    box-shadow: 0 0 0 2px rgba(69,123,157,0.15);
}

.radio-group {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 5px;
}

.radio-group input {
    width: auto;
}

#submit {
    margin-top: 20px;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #1d3557;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s ease;
}

#submit:hover {
    background: #457b9d;
}

#takkMelding {
    background: #e6f4ea;
    border: 1px solid #b7e4c7;
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    color: #1b4332;
}

.img {
    width: 100%;
}

