body {
    font-family: Arial, sans-serif;
    background-color: #142b31;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #142b31;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px white; 
    width: 90%;
    max-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-image {
    width: 100%;
    max-width: 150px;
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
    color: white;
}

label {
    display: block;
    margin-bottom: 5px;
    text-align: left;
    width: 100%;
    color: white;
}

input, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 3px;
    box-sizing: border-box;
}

input {
    border: 1px solid #ccc;
}

button {
    background-color: #2b3cfc;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    border-color: white;
}

.forgot-password {
    color: white;
    text-decoration: none;
    margin-top: 10px;
}

.forgot-password:hover {
    text-decoration: underline;
}