.auth-header {
	font-size: 24px;
	text-align: center;
	margin-bottom: 30px;
	color: #400;
}
.auth-header h1 {
	font-size: 28px;
	margin-bottom: 10px;
}
/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    min-height: 100vh;
    overflow: hidden;
    font-family: monospace;
    position: relative;
}

/* Дождь */
.rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.raindrop {
    position: absolute;
    width: 0.3px;
    height: 30px;
    background: #8b0000;
    animation: fall linear infinite;
}

/* Сканирующая линия */
.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #8b0000;
    z-index: 100;
    animation: scan 8s linear infinite;
    opacity: 0.5;
}

/* Контейнер входа */
.login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    border: none;
    padding: 30px;
    width: 280px;
}

/* Поля ввода */
input {
    width: 100%;
    padding: 12px;
    margin: 12px 0;
    background: #000;
    border: 0.5px solid #300;
    color: #8b0000;
    font-family: monospace;
    font-size: 13px;
    outline: none;
}

input::placeholder {
    color: #400;
}

input:focus {
    background: #0a0a0a;
    border-color: #600;
}

/* Кнопка */
button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: #000;
    border: 0.5px solid #300;
    color: #800;
    font-family: monospace;
    font-size: 13px;
    cursor: pointer;
}

button:hover {
    background: #0a0a0a;
}

/* Анимации */
@keyframes fall {
    from {
        top: -30px;
    }
    to {
        top: 100vh;
    }
}

@keyframes scan {
    0% {
        top: 0;
    }
    100% {
        top: 100vh;
    }
}

