* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
    transform: scale(1.1);
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.content-wrapper {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.logo {
    text-align: center;
    margin-bottom: 5rem;
}

.logo h1 {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.logo p {
    color: #9FFF00;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.container {
    width: 100%;
    max-width: 26rem;
}

.login-header {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.info-text {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.info-text p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.info-text p:last-child {
    margin-bottom: 0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

label {
    font-size: 0.875rem;
    display: flex;
    gap: 0.25rem;
}

.required {
    color: #ff0000;
}

input {
    width: 100%;
    padding: 0.75rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.875rem;
    border-radius: 1px;
}

input:focus {
    outline: none;
    border-color: #9FFF00;
}

button {
    width: 100%;
    padding: 0.75rem;
    background-color: transparent;
    border: 1px solid #9FFF00;
    color: white;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

button:hover {
    background-color: #9FFF00;
    color: black;
}

.links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.links a {
    color: #9FFF00;
    text-decoration: none;
    font-size: 0.875rem;
    transition: opacity 0.2s ease;
}

.links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}
