.bodyme {
    font-family: 'Dancing Script', cursive;
    background: url("images/download.svg") center center / cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    max-width: 1200px;
    width: 90%;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.welcome-section h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 60px;
    line-height: 1.2;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.feature {
    text-align: center;
    padding: 20px;
    background: #ffffff78;
    border-radius: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.like-icon {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: #e74c3c;
}

.follow-icon {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #27ae60;
}

.video-icon {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    color: #f39c12;
}

.feature h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
}


.signup-btn,
.signup-btn0mobile {
    background: #03add8;
    color: white;
    border: 2px solid transparent;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signup-btn0mobile {
    padding: 8px 40px;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}


.mobile-only {
    display: none;
}

@media screen and (max-width: 767px) {
    .mobile-only {
        display: block;
        width: 100%;
        margin-top: 10px;
    }
}

.language-center {
    padding: 10px 0 0 0;
}

.language-selector {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #7f8c8d;
    font-size: 0.9rem;
    cursor: pointer;
}


.login-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.login-card h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 300;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #7c5dfa;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #f1f3f4;
    border-radius: 10px;
    font-size: 1rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #7c5dfa;
    background: white;
    box-shadow: 0 0 0 3px rgba(124, 93, 250, 0.1);
}

.forgot-password {
    color: #7c5dfa;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 30px;
    display: inline-block;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    background: #03add8;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 93, 250, 0.3);
}

.login-buttons {
    display: flex;
    gap: 10px;
}

.half_button {
    flex: 1;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}


@media (max-width: 768px) {
    .container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .login-card {
        order: -1;
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .welcome-section {
        order: 1;
    }

    .welcome-section h1 {
        font-size: 2.5rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .welcome-section h1 {
        font-size: 3rem;
    }

    .login-card {
        padding: 30px;
    }
}
