body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #ffffff;
    background: url('/img/bg-main.jpg') no-repeat center center fixed;
    background-size: cover;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.login-box {
    width: 400px;
    max-width: 90%;
    background: rgba(0, 0, 0, 0.45);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
    position: relative;
    z-index: 1;
}

h1, h2, h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

p {
    color: #cccccc;
    font-size: 14px;
}

label {
    display: block;
    color: #aaaaaa;
    font-size: 13px;
    margin: 12px 0 6px;
}

input {
    width: 100%;
    padding: 12px;
    margin: 0 0 14px;
    border-radius: 6px;
    border: none;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
    border: 1px solid #555;
    color: #ffffff;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover {
    background: linear-gradient(145deg, #4a4a4a, #3a3a3a);
    border-color: #777;
}

a {
    color: #bbbbbb;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
    text-decoration: underline;
}