﻿/* Existing styles */
/*.divbody {

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    box-sizing: border-box;
    flex-direction: column;
    text-align: center;
   
}*/
body {
    background: linear-gradient(135deg, #fde2e4 0%, #fbc3bc 100%);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    height: 100vh;
}
.header {
    text-align: center;
    padding: 30px;
    background-color: #ff99cc;
    color: white;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease-in-out;
}


.form-container {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background: #ff66b2;
    border: none;
    border-radius: 20px;
    padding: 12px 25px;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: #ff3385;
        transform: scale(1.1);
    }

/* Inline heart wrapper under login */
.heart-cta-inline-wrapper {
    margin-top: 18px;
}

/* Pure red heart button (smaller, no gradient) */
.heart-cta-inline {
    position: relative;
    isolation: isolate;
    overflow: visible;
    transform: rotate(45deg);
    width: 72px;
    height: 72px;
    border: none;
    background: #ff4d4d; /* solid red */
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 77, 77, 0.35);
    border-radius: 0; /* pure heart with sharp point */
    outline: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: gentle-pop 2.2s ease-in-out infinite;
}
.heart-cta-inline::before,
.heart-cta-inline::after {
    content: "";
    position: absolute;
    width: 72px;
    height: 72px;
    background: inherit;
    border-radius: 50%;
    top: -36px;
    left: 0;
    box-shadow: inherit;
    z-index: 0;
    pointer-events: none;
}
.heart-cta-inline::after {
    top: 0;
    left: -36px;
}
.heart-cta-inline:hover {
    box-shadow: 0 14px 26px rgba(255, 77, 77, 0.45);
    transform: rotate(45deg) scale(1.04);
}
.heart-cta-inline:focus-visible {
    box-shadow: 0 0 0 4px #fff, 0 0 0 8px rgba(255, 77, 77, 0.45);
}
.heart-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem; /* fit smaller heart */
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(120, 0, 0, 0.45), 0 1px 2px rgba(0,0,0,0.25);
    transform: rotate(-45deg);
    z-index: 1;
}

@keyframes gentle-pop {
  0%, 100% { transform: rotate(45deg) scale(1); }
  50% { transform: rotate(45deg) scale(1.03); }
}

/* Modal styles to match theme */
.kitty-modal .modal-content {
    border-radius: 18px;
    border: 2px solid #ffd6e9;
}
.kitty-modal .modal-header {
    background: linear-gradient(90deg, #ffc1e3, #ff99cc);
    color: #fff;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.kitty-modal .modal-title { font-weight: 700; }
.kitty-modal .modal-body { background: #fff8fb; }
.kitty-modal .kitty-top { font-size: 1.1rem; color: #ff66b2; margin-bottom: 8px; }
.kitty-modal .kitty-list { padding-left: 1.2rem; }
.kitty-modal .kitty-list li { margin-bottom: 6px; }

.btn-outline-kitty {
    border-color: #ff66b2;
    color: #ff66b2;
    border-radius: 999px;
}
.btn-outline-kitty:hover {
    background: #ff66b2;
    color: #fff;
}

.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-link {
    text-decoration: none;
    font-weight: bold;
    color: #ff66b2;
    transition: color 0.3s;
}

    .btn-link:hover {
        color: #ff3385;
        text-decoration: underline;
    }

@media (max-width: 480px) {
    .form-container {
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .button-group {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .heart-cta-inline { width: 60px; height: 60px; }
    .heart-cta-inline::before,
    .heart-cta-inline::after { width: 60px; height: 60px; }
    .heart-cta-inline::before { top: -30px; }
    .heart-cta-inline::after { left: -30px; }
    .heart-label { font-size: 0.8rem; }
}
