/* Styles for Epikinonia, by Mark-Tony Leontaridis */
/* Copyright © 2023 Efivikos */
/* Web page styles */

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #000000;
    color: white;
    background-image: url('https://test.efivikos.gr/fn_images/dark-background1.png');
    background-origin: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow-x: hidden;
    transition: background-image 0.5s ease-in-out;
}

header {
    display: flex;
    justify-content: left;
    align-items: left;
    margin-top: 0cm;
    background-color: #1f1f1f;
    border-radius: 0px 0px 10px 10px;
    position: fixed;
    top: 0;
    width: 100%;
}

.slogan {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    margin-right: 10px;
}

footer {
    position: absolute;
    bottom: 0;
    background-color: #1f1f1f;
    border-radius: 10px 10px 0px 0px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

footer p {
    margin: 0;
}

.container {
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    max-width: 600px;
}

.container h2 {
    color: white;
    border-bottom: 1px solid white;
    padding-bottom: 10px;
}

.container p {
    color: white;
    margin-bottom: 20px;
}

.container form {
    color: white;
}

.container label {
    display: block;
    margin-bottom: 5px;
}

.container input[type="text"],
.container input[type="email"],
.container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.container input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
}

.container input[type="submit"]:hover {
    background-color: #45a049;
}

.message {
    margin-bottom: 10px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}
