/* Tiger Theme Login CSS */

/*intro css */
#login_logo { 
    height: 70px; 
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

#intro_top { 
    width: 100%; 
    height: 100%; 
    z-index: 1; 
    position: relative; 
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f33 50%, #0f1420 100%);
    background-repeat: no-repeat; 
    background-size: cover; 
    background-position: center center; 
    background-attachment: fixed;
}

/* Add subtle tiger stripe accent */
#intro_top::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 80px,
        rgba(255, 140, 0, 0.03) 80px,
        rgba(255, 140, 0, 0.03) 160px
    );
    pointer-events: none;
}

#login_wrap { 
    width: 100%; 
    height: 100%; 
}

#login_all { 
    width: 800px; 
    max-width: 94%; 
    border-radius: 20px; 
    display: block; 
    margin: 0 auto; 
    background: rgba(15, 20, 32, 0.85);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 140, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                0 0 60px rgba(255, 140, 0, 0.15);
    color: #f5f5f5;
    padding: 40px;
}

.login_not_member { 
    text-align: center; 
    padding-top: 5px;
    color: #e0e0e0;
}

.login_not_member a {
    color: #ff8c00;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.login_not_member a:hover {
    color: #ffa500;
    text-decoration: underline;
}

#intro_lang { 
    position: absolute; 
    top: 10px; 
    right: 20px; 
    width: 40px; 
    height: 40px;
    background: rgba(255, 140, 0, 0.15);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

#intro_lang:hover {
    background: rgba(255, 140, 0, 0.25);
    border-color: rgba(255, 140, 0, 0.5);
    transform: scale(1.05);
}

/* section css */
.section { 
    width: 100%; 
    height: auto; 
    margin: 0 auto; 
}

.section_content { 
    width: 100%; 
    max-width: 1100px; 
    margin: 0 auto; 
}

.section_inside { 
    margin: 0 auto; 
}

/* Input field styling for tiger theme */
input[type="text"],
input[type="password"],
input[type="email"] {
    background: rgba(15, 20, 32, 0.6);
    border: 1px solid rgba(255, 140, 0, 0.3);
    color: #f5f5f5;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
    background: rgba(15, 20, 32, 0.8);
}

/* Button styling */
button,
.btn {
    background: linear-gradient(135deg, #ff8c00 0%, #ff7700 100%);
    color: #0f1420;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

button:hover,
.btn:hover {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
    transform: translateY(-2px);
}

button:active,
.btn:active {
    transform: translateY(0);
}

@media screen and (max-width: 1120px) {
    .section_inside { 
        width: 96%; 
    }
}

@media screen and (max-width: 768px) {
    #login_all {
        padding: 30px 20px;
    }
}
