/* ========================
   Auth Pages Modern
   ======================== */
.auth-body {
    background: linear-gradient(135deg, #f37021 0%, #ff8c42 100%) !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
    padding: 20px;
    margin: 0;
}

.auth-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    display: flex;
    min-height: 600px;
}

.auth-left {
    flex: 1;
    background: linear-gradient(135deg, #f37021, #d35400);
    position: relative;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.auth-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 112, 33, 0.9), rgba(211, 84, 0, 0.9));
    z-index: 1;
}

.auth-left-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.auth-left img {
    height: 80px;
    margin-bottom: 30px;
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: auto;
}

.auth-left h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.auth-left p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

.auth-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.auth-header p {
    color: #666;
}

.auth-input-group {
    margin-bottom: 20px;
    position: relative;
}

.auth-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    /* Space for icon */
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
    outline: none;
    box-sizing: border-box;
    height: 50px;
    /* Force height */
}

.auth-input:focus {
    border-color: #f37021;
    box-shadow: 0 0 0 4px rgba(243, 112, 33, 0.1);
}

.auth-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 18px;
    transition: color 0.3s;
}

.auth-input:focus+.auth-icon {
    color: #f37021;
}

.auth-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #f37021 0%, #ff8c42 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(243, 112, 33, 0.3);
}

.auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(243, 112, 33, 0.4);
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    color: #888;
    font-size: 14px;
}

.auth-footer a {
    color: #f37021;
    font-weight: 700;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .auth-card {
        flex-direction: column;
        max-width: 500px;
    }

    .auth-left {
        padding: 40px;
        min-height: 250px;
    }

    .auth-right {
        padding: 40px;
    }
}