@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
        
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
        
#response-message3 {
    display: none;
    font-size: 1rem;
    position: fixed;
    bottom: 20px;
    right: 13px;
    z-index: 3;
    box-sizing: border-box;
    font-weight: 700;
    text-align: center;
    border-radius: 10px;
    max-width: 90%;
    padding: 15px;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
}

/* Style for the X button */
#close-message-btn {
    display:none;
    position: absolute;
    top: 0px;
    right: 0px;
    border: none;
    color: white;
    font-weight: bold;
    background-color: black;
    font-size: 1rem;
    border-radius: 360px;
    cursor: pointer;
    line-height: 1;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
}
        
.iconarkou{
    width:42px;
    height:42px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 360px;
    margin-right: 10px;
}
        
.login-container {
    display: flex;
    width: 1000px;
    max-width: 90%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
        
.login-form-container {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
        
.login-image-container {
    flex: 1;
    background: linear-gradient(135deg, #ff4b2b, #ff6b6b);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}
        
.login-image-container::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.1);
    top: -25%;
    left: -25%;
    transform: rotate(45deg);
}
        
.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ff4b2b;
}
        
.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}
        
.form-subtitle {
    font-size: 15.5px;
    color: #777;
    margin-bottom: 30px;
}
        
.input-group {
    margin-bottom: 20px;
}
        
.input-label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}
        
.input-field {
    width: 100%;
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    background: #f9f9f9;
}
        
.input-field:focus {
    border-color: #ff4b2b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 75, 43, 0.1);
    background: #fff;
}
        
.password-input-container {
    position: relative;
}
        
.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    cursor: pointer;
    font-size: 16px;
    z-index: 10;
}
        
.login-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff4b2b, #ff6b6b);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(255, 75, 43, 0.3);
}
        
.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 15px rgba(255, 75, 43, 0.4);
}
        
.login-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(255, 75, 43, 0.3);
}
        
.back-button {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: none;
    font-size: 14px;
    color: #777;
    cursor: pointer;
    margin-bottom: 30px;
    transition: all 0.3s;
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
        
.back-button i {
    margin-right: 5px;
}
        
.back-button:hover {
    color: #ff4b2b;
}
        
.image-content {
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}
        
.image-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}
        
.image-content p {
    font-size: 15.5px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}
        
.hero-image {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
    margin-top: 20px;
    z-index: 2;
}
        
@media (max-width: 850px) {
    .login-container {
        flex-direction: column;
        max-width: 500px;
        height: auto;
        margin: 20px 0;
        width:95%;
    }
            
    .login-image-container {
        display: flex;
        padding: 30px 20px;
        border-radius: 0 0 20px 20px;
    }
            
    .image-content h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
            
    .image-content p {
        margin-bottom: 20px;
    }
            
    .hero-image {
        max-width: 60%;
        margin-top: 10px;
    }
            
    .login-form-container {
        padding: 30px;
        order: -1;
    }
            
    body {
        align-items: flex-start;
        padding: 10px;
    }
}
        
@media (max-width: 700px) {
    .login-container {
        max-width: 500px;
        margin: 10px 0;
        border-radius: 15px;
    }
            
    .hero-image {
        max-width: 70%;
    }
            
    .image-content h2 {
        font-size: 22px;
    }
}
        
/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
        
.login-form-container > * {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}
        
.login-form-container > *:nth-child(1) { animation-delay: 0.1s; }
.login-form-container > *:nth-child(2) { animation-delay: 0.2s; }
.login-form-container > *:nth-child(3) { animation-delay: 0.3s; }
.login-form-container > *:nth-child(4) { animation-delay: 0.4s; }
.login-form-container > *:nth-child(5) { animation-delay: 0.5s; }
.login-form-container > *:nth-child(6) { animation-delay: 0.6s; }