/* lomakeStyles.css */

/* Varmistetaan, että koko sivu on mustalla taustalla */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    //background-color: #000; /* Musta tausta */ #121212
    background-color: #121212;
    color: #fff; /* Valkoinen teksti */
    text-align: center;
}

/* Otsikon tyyli */
h1 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Yleiselle tekstille */
p {
    font-size: 1.0em;
    line-height: 1.5;
}

/* Varmistetaan, että linkit erottuvat taustasta */
a {
    color: #4CAF50; /* Vihreä linkkiväri */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Nappityyli */
.btn {
    background-color: #4CAF50; /* Vihreä nappi */
    margin-bottom: 10px;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #45a049; /* Tummempi vihreä hoverilla */
}


/* Lomake */
#lomake {
        label {
            //display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea {
            width: 250px;
            padding: 10px;
            //margin-top: 5px;
            margin-bottom: 5px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 16px;
            color: black;
            background: DarkSeaGreen;
            font-weight: bold;		
        }

        input[type="checkbox"] {
            margin-right: 10px;
            margin-top: 5px;
        }
}

