.quote {
   color: #ddd;
   font-size: clamp(1.4rem, 4vw, 2.2rem);
   margin-top: 20px;
   padding:0 10px;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    width: 100%;
}

.input-field {
    width: 100%;
    max-width: 450px;
    padding: 18px;
    background-color: #0b0e14;
    border: 3px solid #2dff8f;
    color: #2dff8f;
    font-family: 'VT323';
    font-size: 26px;
    box-sizing: border-box;
}

.input-field::placeholder {
    color: #2dff8f;
    opacity: 0.4;
}

.login-button {
    background: #ff2fdc;
    color: #0b0e14;
    border: 4px solid #eaeaea;
    padding: 22px 40px;
    font-family: 'Press Start 2P';
    font-size: clamp(12px, 3vw, 18px);
    cursor: pointer;
    box-shadow: 6px 6px 0 #000;
    text-transform: uppercase;
    margin-top: 20px;
    max-width: 100%;
}

.login-button:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 #000;
}


.register-link {
    color: #cccccc;
    font-size: 1.3em;
    margin-top: 10px;
    position: relative;
    z-index: 20;
}

.register-text {
    color: #ff4444;
    text-decoration: none;
    border-bottom: 2px solid #ff4444;
    padding-bottom: 2px;
    cursor: pointer;
}

footer {
    width: 100%;
    text-align: center;
    padding: 20px 0;
}


@media (min-width: 1024px) and (min-height: 750px) {
    footer {
        position: fixed;
        bottom: 60px;
        left: 0;
    }
}


@media (max-width: 600px) {
    .quote {
        padding: 0 15px;
    }

    .login-button {
        padding: 18px 30px;
    }

    .register-link {
        font-size: 1rem;
        padding: 0 10px;
    }
    .login-form {
        gap: 15px;
    }
}