html, body{
    height: 100%;
    width: 100%;
}
body {
    margin: 0;
    background-image: url('../images/background.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    padding: 40px;
    border-radius: 12px;
    width: 50%;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    color: #4A4A4A;
    font-size: 24px;
    font-weight: bold;
}

.input-div {
    margin-bottom: 15px;
    position: relative;
    direction:rtl;
    text-align: center;
}

.input-div input {
    width: 400px;
    margin: auto;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 30px;
    transition: border 0.3s;
    font-size: 16px;
}

.input-div input:focus {
    border-color: #181d6c;
    outline: none;
}

#btn {
    background-color: #181d6c;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    width: 400px;
    margin: auto;
}

#btn:hover {
    background-color: #f75d5a;
    transform: translateY(-2px);
}

.footer {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.footer a {
    color: #181d6c;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.header {
    margin-bottom: 30px;
    font-size: 16px;
    color: #181d6c;
    text-align: center;
}

.logo {
    width: 80px;
    margin-bottom: 20px;
}

.hidden{
    display: none;
    display: block;
}

#quick-login{
    cursor: pointer;
    transition: 200ms;
}

#quick-login:hover{
    transform: translateY(-5px);
    transition: 200ms;
}


@media (max-width: 768px) {
    body{
        background-image: url('../../images/bg-mobile-nologo.png');
    }
    #btn, .input-div input{
        width: 100%;
    }
    .login-container {
        width: 100%;
    }
}

/* Header Styles */
.connect-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo img {
    height: 50px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-link {
    color: #181d6c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-link:hover {
    color: #f75d5a;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #181d6c;
    text-decoration: none;
    font-weight: 600;
}

.header-phone-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.header-phone-btn:hover {
    transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #181d6c;
    cursor: pointer;
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .header-nav.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-phone span {
        display: none;
    }
}

/* Adjust body to account for fixed header */
body {
    padding-top: 80px;
}