body {
    background-image: url('../Images/bg.png');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    font-family: Arial, sans-serif;
}

.login {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.9); /* 90% läbipaistev valge */
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    width: 300px;
}

.error {
    color: red;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

input[type="email"],
input[type="password"],
input[type="submit"] {
    margin-bottom: 15px;
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 14px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #45a049;
}
.logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 150px;
    height: auto;
}
