html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    height: 100%;
    background: url('/img/background_block_brick_wall_building_built_structure_cement-1153128.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

form {
    background: rgba(34, 34, 34, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #fff;
}

form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #444;
    border-radius: 5px;
    font-size: 16px;
    background: #333;
    color: #fff;
}

form button {
    width: 100%;
    padding: 10px;
    background-color: #ffcc00;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

form button:hover {
    background-color: #e6b800;
}

#toggleText {
    margin-top: 10px;
    color: #fff;
}

#toggleText a {
    color: #ffcc00;
    text-decoration: none;
}

#toggleText a:hover {
    text-decoration: underline;
}

footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ccc;
    padding: 10px 20px;
    font-size: 12px;
    text-align: center;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    max-width: 250px;
    text-align: left;
}

.footer-column h4 {
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #ffcc00;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffcc00;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.social-icons a img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.social-icons a img:hover {
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 10px;
    font-size: 10px;
    color: #888;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    form {
        max-width: 90%;
    }

    .footer-columns {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        min-width: 100%;
        text-align: center;
    }
}