.elementor-12 .elementor-element.elementor-element-2d7a680{--display:flex;}.elementor-12 .elementor-element.elementor-element-85e4a3d.elementor-element{--align-self:center;}/* Start custom CSS for html, class: .elementor-element-85e4a3d */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 420px;
}

.login-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 40px 35px;
    text-align: center;
}

.logo-container {
    margin-bottom: 25px;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.login-title {
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 1.5rem;
}

.login-form {
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.remember-me input {
    margin-right: 8px;
}

.forgot-password {
    color: #4299e1;
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-password:hover {
    color: #3182ce;
    text-decoration: underline;
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: #4299e1;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #3182ce;
}

.signup-link {
    margin-top: 25px;
    font-size: 0.9rem;
    color: #718096;
}

.signup-link a {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-card {
        padding: 30px 25px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .forgot-password {
        margin-top: 10px;
    }
}/* End custom CSS */