/* Variables */
:root {
    --pwal-gradient: linear-gradient(90deg, #f0326b 0%, #a212e3 100%);
    --text-muted: #6c757d;
    --border-color: #eee;
}

body {
    background-color: #f0dfff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 20px;
}

/* Main Container */
.signup-wrapper {
    max-width: 1000px;
    width: 100%;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    margin-top: 70px;
}

/* Left Side - Image */
.signup-side-img {
    background-color: #6d28d9;
    position: relative;
    min-height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    overflow: hidden;
}
.signup-side-img::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../vector/login_card_bg_vector.webp');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}
.signup-side-img.bg-loaded::before { opacity: 1; }

.signup-side-img::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(244,63,142,0.22) 0%, rgba(124,58,237,0.3) 100%);
    mix-blend-mode: multiply;
    z-index: 1;
}

.img-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.pwal-logo-main {
    width: 120px;
    margin-bottom: 20px;
}

.social-bottom {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0; 
    z-index: 2;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-bottom a {
    background-color: white; 
    color: #333; 
    width: 30px;
    height: 30px;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.social-bottom a:hover {
    background-color: #329af0; 
    color: white; 
    transform: translateY(-5px);
}

/* Right Side - Form */
.signup-form-side {
    padding: 50px 60px;
}

.signup-title {
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-align: center;
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    background-color: #fcfcfc;
    border: 1px solid #e0e0e0;
}

.input-group-text {
    background-color: #fcfcfc;
    border-left: none;
    border-color: #e0e0e0;
    cursor: pointer;
}

/* Buttons */
.btn-login {
    background: var(--pwal-gradient);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-login:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-social-outline {
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 10px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
}

.btn-social-outline:hover {
    background-color: #f8f9fa;
}

.btn-social-outline img {
    width: 18px;
    margin-right: 10px;
}

.btn-social-outline i {
    margin-right: 10px;
    font-size: 1.1rem;
}
.social-btn-content {
    display: grid;
    grid-template-columns: 35px auto; 
    align-items: center;
    width: 250px;
}

.social-btn-content i, 
.social-btn-content img {
    width: 20px; 
    display: flex;
    justify-content: flex-start; 
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #bbb;
    font-size: 0.8rem;
}
.divider::before, .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #eee;
}
.divider span { padding: 0 10px; }
.iti { width: 100%; display: block; }
.iti__country-list { z-index: 10; }
.form-control:focus { box-shadow: none; border-color: #ced4da; }
.signup-title { font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.btn-login {
    background: linear-gradient(90deg, #ff4081, #7c4dff);
    border: none;
    color: white;
    border-radius: 30px;
    font-weight: bold;
    padding: 10px;
}
.signup-link, .terms-link { color: #d63384; }
.footer .container span{
    color : #6c757d!important;
}