@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.background-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("/assets/images/nel-background.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: -1;
}
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 360px;
    text-align: center;
}

.login-card h2 {
    margin-bottom: 24px;
    color: #feb728;
}

.login-card input {
    width: 100%;
    padding: 12px 16px;
    color: #feb728;
    margin-bottom: 16px;
    border: 1px solid #2c2c2c;
    background-color: transparent;
    border-radius: 8px;
    font-size: 16px;
}

.login-card button {
    width: 100%;
    padding: 12px;
    background: #feb728;
    border: none;
    border-radius: 30px;
    color: #2c2c2c;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-card button:hover {
    background: #2c2c2c;
    color: #feb728;
}

.register-link {
    margin-top: 16px;
    font-size: 14px;
    color: #feb728;
}

.register-link a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
}

.register-link a:hover {
    text-decoration: underline;
}

.back-home-link {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #feb728;
}

.back-home-link a {
    color: #feb728;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-home-link a:hover {
    color: #ffd700;
}