body {
    background: url("{% static 'img/background.jpg' %}") no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.login-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-form {
    background-color: rgba(24, 33, 37, 0.85);
    max-width: 400px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.login-logo {
  display: block;
  margin: 0 auto;
  max-width: 200px;
  height: auto;
}

.login-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #ddd;
}

.login-form input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 16px;
    border: none;
    font-size: 1rem;
    margin-top: 4px;
    margin-bottom: 16px;
    color: #000;
    background-color: #fff;
    box-sizing: border-box;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.login-form input:focus {
    box-shadow: 0 0 8px 2px #00ffff;
}

.btn-primaryLogin {
    background-color: #1f758f;
    border: 2px solid transparent;
    padding: 12px;
    font-size: 1.1rem;
    color: white;
    border-radius: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    font-weight: 600;
}

.btn-primaryLogin:hover {
    background-color: #415860;
    border-color: #00ffff;
}

.footer {
    background-color: rgba(0, 0, 0, 0.3);
    color: #000000;
    padding: 10px 0;
    font-size: 0.8rem;
    user-select: none;
}

.footer-text {
    margin: 0;
}
