.elementor-679 .elementor-element.elementor-element-cfb0aaf{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-cc9bc20 */@import url('https://cdn.font-library.org/fonts/B-Nazanin.css');

body {
    font-family: 'B Nazanin', sans-serif !important;
    background: linear-gradient(135deg, #1E88E5, #1565C0);
    text-align: center;
}

.login-container {
    width: 400px;
    padding: 30px;
    margin: 80px auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
      display: flex;
    flex-direction: column;
    gap: 20px; 
}

.login-container:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

h2, h3 {
    font-family: 'B Nazanin', sans-serif !important;
    color: #0D47A1;
    font-size: 24px;
}

input {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border-radius: 10px;
    border: 1px solid #ccc;
    transition: all 0.3s ease-in-out;
}

input:focus {
    border-color: #1976D2;
    box-shadow: 0 0 8px rgba(25, 118, 210, 0.5);
}

button {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    padding: 14px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: transform 0.4s ease-in-out, background 0.4s ease-in-out;
}

button:hover {
    transform: scale(1.08);
    background: linear-gradient(135deg, #1976D2, #1565C0);
}

.hidden {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    display: none;
}

.show {
    opacity: 1;
    transform: translateY(0);
    display: block;
}
.captcha-container {
    background: #E3F2FD;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    font-size: 22px;
    font-weight: bold;
    color: #0D47A1;
    border: 2px solid #1976D2;
}
#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #1976D2;
    color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#chatbot-header {
    font-weight: bold;
    text-align: center;
}

#chatbot-body {
    background: white;
    color: black;
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
}

#chatbot-input {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    border-radius: 5px;
    border: none;
}/* End custom CSS */