/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2070') center/cover no-repeat fixed;
}

/* Main layout */
.lx-main {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.lx-left-bloc {
    display: none;
}

.lx-login {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.lx-login-content {
    width: 100%;
    padding: 2.5rem;
    border-radius: 15px;
    background: #FFFFFF;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Login header */
.lx-login-logo {
    text-align: center;
    margin-bottom: 2.5rem;
}

.lx-login-logo img {
    width: 140px;
    height: auto;
    margin-bottom: 0.5rem;
}

.lx-login-logo h2 {
    color: #d41a54;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.lx-login-logo p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Form elements */
.lx-textfield {
    position: relative;
    margin-bottom: 1.8rem;
}

.lx-over-label {
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    background: #fff;
    padding: 0 0.5rem;
    color: #666;
    font-size: 0.85rem;
}

.lx-textfield input[type="text"],
.lx-textfield input[type="password"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.lx-textfield input:focus {
    outline: none;
    border-color: #d41a54;
    box-shadow: 0 0 0 3px rgba(212, 26, 84, 0.1);
}

.lx-textfield i.fa-eye-slash {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    cursor: pointer;
}

/* Checkbox and forgotten password */
.lx-textfield label input[type="checkbox"] {
    margin-right: 0.5rem;
}

.lx-password-forgotten {
    float: right;
    color: #d41a54;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.lx-password-forgotten:hover {
    text-decoration: underline;
}

/* Submit button */
.lx-submit {
    margin-top: 2.5rem;
}

.lx-submit a {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #d41a54;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lx-submit a:hover {
    background-color: #b31746;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 26, 84, 0.2);
}

/* Error message */
.lx-login-error {
    background-color: #fff3f3;
    color: #d41a54;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 26, 84, 0.2);
}

/* Utility classes */
.lx-clear-fix {
    clear: both;
}

/* Responsive design */
@media (max-width: 768px) {
    .lx-login-content {
        padding: 2rem;
    }
    
    .lx-main {
        padding: 1rem;
    }
}
