/* Import fonts */
@import url(//fonts.googleapis.com/css?family=Open+Sans:300,400,600&subset=latin,greek);

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    min-height: 100%;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, sans-serif;
    color: #333;
    /*background: url('background1.jpg') no-repeat center center fixed;*/
    background-size: cover;
}

/* Container styling */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Heading styling */
h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Form styling */
/*input[type="text"], input[type="email"], input[type="number"], select, button {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
}*/

button {
    background-color: #42B883;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

button:hover {
    background-color: #36A2EB;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        width: 100%;
    }

    h2 {
        font-size: 1.8rem;
    }

    input, select, button {
        font-size: 1.2rem;
        padding: 15px;
    }
}

/* Footer styling */
.page-footer {
    text-align: center;
    padding: 10px;
    background-color: #222a32;
    color: #fff;
    font-size: 0.9rem;
    border-top: 1px solid #38444f;
}
