.register-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.register-form input {
    width: 100%;
    padding: 14px;
    border: 1px solid #2c2c2c;
    border-radius: 8px;
    background: #111111;
    color: #ffffff;
    font-size: 15px;
    transition: border 0.2s ease;
}

.register-form input:focus {
    outline: none;
    border-color: #4a90e2;
}

.register-form button {
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #4a90e2;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.register-form button:hover {
    opacity: 0.9;
}

.register-response {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.register-response.success {
    display: block;
    background: rgba(0, 120, 0, 0.15);
    border: 1px solid rgba(0, 180, 0, 0.4);
    color: #7dff7d;
}

.register-response.error {
    display: block;
    background: rgba(180, 0, 0, 0.15);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff8a8a;
}

.hidden-block {
    visibility: hidden;
}

.password-info {
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    margin-top: -10px;
    margin-bottom: 8px;
    padding-left: 4px;
}

.login-link {
    margin-top: 20px;
}

.login-link a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}
.honeypot-field {
    display: none;
}

@media screen and (max-width: 1350px) {

    .hidden-block {
        display: none;
    }

}
