body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #00853E;
    background-image: url('../img/bg.png');
    background-size: cover;
}
body:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(rgb(9, 102, 26, 0.8), rgb(9, 102, 26, 0.6));
    z-index: 1;
}
.error-alert {
    padding: 10px;
    background: rgb(255,0,0,0.6);
    color: #FFF;
    border-radius: 4px;
}
.success-alert {
    padding: 10px;
    background: rgb(0,255,0,0.9);
    color: #FFF;
    border-radius: 4px;
}
.container {
    width: 80%;
    max-width: 400px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

h1 {
    text-align: center;
    color: #333;
}

form {
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.footer {
    position: fixed;
    bottom: 0;
    z-index: 99;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 80px;
    background: rgb(255,255,255,0.8);
}

.footer div {
    width: 200px;
}

.footer div img {
    width: 100%;
}

@media(max-width: 400px) {
    .footer div:nth-child(1), .footer div:nth-child(2) {
        display: none;
    }
}