:root {
    --primary: #FF3E82;
    /* Vibrant pink */
    --secondary: #00C2FF;
    /* Electric blue */
    --accent: #FFD700;
    /* Gold */
    --dark: #1A1A2E;
    /* Dark navy */
    --light: #F8F9FA;
    /* Light gray */
    --text: #333333;
    --text-light: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: white;
    color: var(--text);
    overflow-x: hidden;
}

.signin-container {
    display: flex;
    min-height: 100vh;
}

.signin-left {
    flex: 1;
    background: linear-gradient(135deg, var(--dark), #2A2A4A);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
}

.logo img {
    height: 40px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.left-content {
    max-width: 500px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.left-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.left-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.animation-container {
    position: relative;
    height: 300px;
    margin-top: 40px;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.7;
    animation: float 15s infinite ease-in-out;
}

.shape.pink {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape.blue {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

.shape.gold {
    width: 150px;
    height: 150px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

.signin-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: white;
}

.signin-form {
    max-width: 400px;
    width: 100%;
}

.signin-form h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.signin-form .subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-container i {
    position: absolute;
    left: 15px;
    color: var(--text-light);
    font-size: 1rem;
}

.input-container input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.input-container input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.2);
    outline: none;
}

.toggle-password {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: var(--text-light);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    font-size: 0.85rem;
}

.remember-me {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--text-light);
}

.remember-me input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    height: 16px;
    width: 16px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.remember-me input:checked~.checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkmark:after {
    content: "";
    display: none;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -1px;
}

.remember-me input:checked~.checkmark:after {
    display: block;
}

.forgot-password {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.forgot-password:hover {
    color: var(--primary);
}

.signin-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.signin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 62, 130, 0.4);
}

.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: var(--text-light);
    font-size: 0.8rem;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #eee;
}

.divider span {
    padding: 0 15px;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn img {
    height: 18px;
}

.social-btn.google:hover {
    background: #f8f8f8;
    border-color: #ccc;
}

.social-btn.instagram {
    color: white;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border: none;
}

.social-btn.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(188, 24, 136, 0.3);
}

.signup-link {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.signup-link a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.signup-link a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(10px) translateX(-15px);
    }

    75% {
        transform: translateY(-15px) translateX(-10px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .signin-container {
        flex-direction: column;
    }

    .signin-left {
        padding: 30px;
    }

    .left-content {
        max-width: 100%;
        text-align: center;
    }

    .logo {
        justify-content: center;
        margin-bottom: 30px;
    }

    .animation-container {
        height: 200px;
        margin: 30px auto;
    }
}

@media (max-width: 576px) {

    .signin-left,
    .signin-right {
        padding: 20px;
    }

    .left-content h1 {
        font-size: 2rem;
    }

    .signin-form h2 {
        font-size: 1.7rem;
    }
}