* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: myfont;
    src: url("../pic/Helve.ttf") format("truetype"); 
}
body {
    font-family: myfont;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    direction: rtl;
    background: #ffffff;
}
.login-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.login-box {
    display: flex;
    width: 100%;
    max-width: 900px;
    min-height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.6s ease;
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.right-section {
    flex: 1;
    background: #f9f3ea;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
}
.logo {
    text-align: center;
}
.logo img {
    width: 100%;
    max-width: 280px;
    height: auto;
}
.left-section {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    float: left;
    background: linear-gradient(0deg, rgba(57, 64, 84, 0.85), rgba(57, 64, 84, 0.85)), url('../pic/blacknwhite.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-blend-mode: multiply;
}
.input-group {
    position: relative;
    margin-bottom: 25px;
}
.input-group i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #41abdb;
    font-size: 18px;
}
.input-group input {
    width: 100%;
    padding: 14px 18px 14px 50px;
    border: 2px solid #e0e0e0;
    background: #ffffff;
    border-radius: 10px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    outline: none;
    text-align: center;
}
.input-group input::placeholder {
    color: #999;
}
.input-group input:focus {
    border-color: #41abdb;
    box-shadow: 0 0 0 4px rgba(65, 171, 219, 0.1);
}
.login-btn {
    width: 100%;
    padding: 16px;
    background: #b85125;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(65, 171, 219, 0.5);
}
.login-btn:active {
    transform: translateY(0);
}
.login-btn i {
    margin-left: 8px;
    font-size: 18px;
}
/* Responsive */
@media (max-width: 768px) {
    .login-box {
        flex-direction: column;
        max-width: 420px;
    }
    
    .right-section {
        padding: 40px;
    }
    
    .logo img {
        max-width: 180px;
    }
    
    .left-section {
        padding: 40px 30px;
    }
}
.header-title {
    text-align: center;
    margin-bottom: 40px;
}
.header-title h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}
.header-title h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}
.orange {
    color: #ee6322;
}
.white {
    color: #ffffff;
}
