* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    min-height: 600px;
}

/* Left Section */
.left-section {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #e57373 100%);
    padding: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.content {
    position: relative;
    z-index: 2;
    color: white;
}

.content h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 400;
    /*  color: #833AB4; */
}

.content p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 500px;
}

/* Decorative Shapes */
.decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50px;
    opacity: 0.6;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 138, 138, 0.8), rgba(255, 171, 145, 0.8));
    bottom: 50px;
    left: -50px;
    transform: rotate(45deg);
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 171, 145, 0.7), rgba(255, 207, 158, 0.7));
    top: 100px;
    left: 100px;
    transform: rotate(-30deg);
}

.shape-3 {
    width: 300px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 171, 145, 0.8), rgba(255, 207, 158, 0.8));
    top: 200px;
    right: 100px;
    transform: rotate(30deg);
    border-radius: 40px;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(186, 104, 200, 0.6), rgba(156, 39, 176, 0.6));
    bottom: 200px;
    right: 150px;
    transform: rotate(20deg);
}

.shape-5 {
    width: 400px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 138, 138, 0.7), rgba(255, 171, 145, 0.7));
    bottom: 100px;
    right: -100px;
    transform: rotate(-25deg);
    border-radius: 50px;
}

/* Right Section */
.right-section {
    flex: 1;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.login-box {
    width: 100%;
    max-width: 400px;
}

.login-box h2 {
    color: #667eea;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group .icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    display: flex;
    align-items: center;
}

.input-group input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: none;
    background: #e8ebf5;
    border-radius: 50px;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input::placeholder {
    color: #999;
}

.input-group input:focus {
    background: #dfe3f0;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.remember {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #666;
}

.remember input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: #667eea;
}

.forgot-password {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #764ba2;
}

.login-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #b565d8, #a855c9);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(181, 101, 216, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(181, 101, 216, 0.4);
}

.login-btn:active {
    transform: translateY(0);
}

footer {
    margin-top: 30px;
    color: white;
    font-size: 0.9rem;
}

.freepik {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        flex-direction: column;
    }

    .left-section {
        padding: 40px;
        min-height: 300px;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content p {
        font-size: 0.9rem;
    }

    .right-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .left-section {
        padding: 30px 20px;
    }

    .content h1 {
        font-size: 1.8rem;
    }

    .login-box {
        padding: 0 10px;
    }
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* ===== ANIMATIONS ===== */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-1 {

    0%,
    100% {
        transform: rotate(45deg) translate(0, 0);
    }

    50% {
        transform: rotate(45deg) translate(-10px, -20px);
    }
}

@keyframes float-2 {

    0%,
    100% {
        transform: rotate(-30deg) translate(0, 0);
    }

    50% {
        transform: rotate(-30deg) translate(10px, -15px);
    }
}

@keyframes float-3 {

    0%,
    100% {
        transform: rotate(30deg) translate(0, 0);
    }

    50% {
        transform: rotate(30deg) translate(-15px, 10px);
    }
}

@keyframes float-4 {

    0%,
    100% {
        transform: rotate(20deg) translate(0, 0);
    }

    50% {
        transform: rotate(20deg) translate(10px, 10px);
    }
}

@keyframes float-5 {

    0%,
    100% {
        transform: rotate(-25deg) translate(0, 0);
    }

    50% {
        transform: rotate(-25deg) translate(-10px, -15px);
    }
}

.container {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.shape-1 {
    animation: float-1 8s ease-in-out infinite;
}

.shape-2 {
    animation: float-2 9s ease-in-out infinite 1s;
}

.shape-3 {
    animation: float-3 7s ease-in-out infinite 0.5s;
}

.shape-4 {
    animation: float-4 8.5s ease-in-out infinite 2s;
}

.shape-5 {
    animation: float-5 7.5s ease-in-out infinite 1.5s;
}