body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('../img/trading.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.login-container {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: white;
    padding: 30px;
    margin: 20% auto;
    width: 300px;
    border-radius: 5px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

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

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

button {
    background-color: fuchsia;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    opacity: 0.8; /* Slight opacity change on hover */
}

#error-message {
    background-color: #F08080;
    color: white;
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 15px;
}
