body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('../images/landing_page3.jpg');
    background-size: cover;
    background-position: center bottom;
    margin: 0;
}

.login-container {
    text-align: center;
    position: relative;
    background-color: rgba(255, 255, 255, 0.2); /* Adjust the alpha (last) value for transparency */
}

.company-logo {
    max-width: 150px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.login {
    width: 400px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2); /* Adjust the alpha (last) value for transparency */
    position: relative;
    z-index: 1;
}

h2 {
    text-align: center;
    color: #333;
}

form {
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 10px;
}

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

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

p.error,
p.success {
    margin-top: 10px;
    text-align: center;
}

p.error {
    color: red;
}

p.success {
    color: green;
}
