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

body,
html {
    height: 100%;
    font-family: 'Roboto', sans-serif;
}

.background {
    background-image: url('img/background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 600px;
}

.logo {
    max-width: 200px;
    margin-bottom: 40px;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
/*    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);*/
}

p {
    font-size: 18px;
    margin-bottom: 30px;
}

.form-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    backdrop-filter: blur(5px);
}

input[type="text"],
input[type="email"] {
    width: calc(50% - 5px);
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    font-size: 16px;
}

button {
    background-color: #154f30;
    /* Darker green color */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

button:hover {
    background-color: #1B5E20;
}

.footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 14px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    p {
        font-size: 16px;
    }

    .form-container {
        padding: 15px;
    }

    input[type="text"],
    input[type="email"] {
        width: 100%;
    }
}