﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #ff6b6b, #ffa726, #ff8a80);
    min-height: 100vh;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 50%, #ff8a80 100%);
    overflow: hidden;
}

.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.heart {
    position: absolute;
    color: rgba(255, 255, 255, 0.7);
    font-size: 40px;
    animation: float 6s ease-in-out infinite;
    opacity: .4;
}

    .heart:nth-child(1) {
        left: 10%;
        animation-delay: 0s;
    }

    .heart:nth-child(2) {
        left: 20%;
        animation-delay: 1s;
    }

    .heart:nth-child(3) {
        left: 30%;
        animation-delay: 2s;
    }

    .heart:nth-child(4) {
        left: 40%;
        animation-delay: 3s;
    }

    .heart:nth-child(5) {
        left: 50%;
        animation-delay: 4s;
    }

    .heart:nth-child(6) {
        left: 60%;
        animation-delay: 5s;
    }

    .heart:nth-child(7) {
        left: 70%;
        animation-delay: 0.5s;
    }

    .heart:nth-child(8) {
        left: 80%;
        animation-delay: 1.5s;
    }

    .heart:nth-child(9) {
        left: 90%;
        animation-delay: 2.5s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10%, 90% {
        opacity: .4;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    min-height: 90vh;
    padding: 0;
}

.hero-text {
    color: white;
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    opacity: 0.9;
}

.cycle-info {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.brand-benefits {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.brand-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 9px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.brand-card-natura {
    background: #E3672B
}

.brand-card-avon {
    background: #E5004B
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 9px;
}

    .brand-logo img {
        width: 60%;
    }

.brand-requirement {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.points-display {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #fff, #f8f9fa);
    color: #ff6b6b;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .cta-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        background: linear-gradient(45deg, #f8f9fa, #fff);
    }

.hero-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    animation: slideInRight 1s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-title {
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

    .form-input:focus {
        outline: none;
        border-color: #ff6b6b;
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.2);
        transform: translateY(-2px);
    }

.brand-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.brand-option {
    position: relative;
    cursor: pointer;
}

    .brand-option input[type="radio"] {
        display: none;
    }

.brand-option-label {
    display: block;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    background: #fff;
}

.brand-option input[type="radio"]:checked + .brand-option-label {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    color: white;
    transform: scale(1.05);
}

.brand-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.brand-points {
    font-size: 0.9rem;
    opacity: 0.8;
}

.points-calculator {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.points-label {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.points-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b6b;
    margin-bottom: 5px;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 9px;
}

    .submit-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    }

.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.2);
    }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-description {
    line-height: 1.6;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.9;
}

.login-foot{
    color:#fff;
    margin-bottom:0;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .brand-benefits {
        flex-direction: column;
    }

    .brand-selector {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media(min-width: 768px){
    .hero-content {
        gap: 60px;
        min-height: 70vh;
    }
}