/* style.css */

/* Generell reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Bakgrunnsfarge og font for hele body */
body {
    background: #f7f7f7;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.4;
}

/* Container som senterer innholdet og gir litt spacing */
.unsubscribe-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px 30px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Logo-styling */
.logo {
    display: block;
    max-width: 150px;
    margin: 0 auto 20px auto; /* Senterer logoen og gir bunnmarg */
}

/* Overskrift */
.unsubscribe-container h1 {
    text-align: center;
    margin-bottom: 10px;
}

/* Avsnitt */
.unsubscribe-container p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #555;
}

/* Skjemaet */
.unsubscribe-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.unsubscribe-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

.unsubscribe-form input[type="email"] {
    width: 100%;
    max-width: 300px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Knapp */
.unsubscribe-form button {
    background: #005bbb; /* F.eks en blåfarge */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.unsubscribe-form button:hover {
    background: #004899; /* Mørkere ved hover */
}
