.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #f4f6f9;
    min-height: calc(100vh - 200px);
}

.auth-box {
    display: flex;
    width: 100%;
    max-width: 1000px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.auth-image {
    flex: 0 0 45%;
    background-color: #1a1a1a;
    position: relative;
    /* User will place their image here, setting background-size cover etc. */
}

.auth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.auth-form-area {
    flex: 1;
    padding: 40px 50px;
}

.auth-tabs {
    display: flex;
    background: #f1f3f5;
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 30px;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #4caf50;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-header {
    margin-bottom: 25px;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin: 0 0 5px 0;
}

.form-header p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #444;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper .input-icon {
    position: absolute;
    left: 15px;
    font-size: 16px;
    color: #aaa;
}

.input-wrapper .input-icon-right {
    position: absolute;
    right: 15px;
    font-size: 16px;
    color: #aaa;
    cursor: pointer;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 40px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

.input-wrapper input:focus {
    border-color: #4caf50;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #4caf50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #43a047;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.form-footer a {
    color: #4caf50;
    font-weight: 600;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .auth-box {
        flex-direction: column;
    }
    .auth-image {
        height: 200px;
        flex: none;
    }
    .auth-form-area {
        padding: 30px 20px;
    }
}
