@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html {
    margin: 0;
    font-family: "Caveat", serif !important;
    background: #f6f8fa;
    background: url("assets/bg.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    text-transform: capitalize;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
}

.container {
    width: 385px;
    text-align: center;
    font-family: "Caveat", serif !important;
    position: relative;
}

.sticky-note {
    width: 159px;
    height: 141px;
    background: linear-gradient(145deg, #f9ed69, #f8e00a, #f7ca18);
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%) rotate(-8deg);
    box-shadow: 10px 22px 12px rgb(53 43 2 / 38%);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    color: #333;
    text-align: center;
    line-height: 1.4;
    position: relative;
}

.pin-icon {
    position: absolute;
    top: -14px;
    right: -6px;
    font-size: 20px;
    color: #d9534f;
    transform: rotate(345deg);
    cursor: default;
}

.tape {
    position: absolute;
    top: -10px;
    left: 15px;
    width: 40px;
    height: 15px;
    background: #e2e8f1;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    transform: rotate(-15deg);
    z-index: 1;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo .ideas {
    width: 110px;
}

.logo .pill {
    width: 50px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;

}

.modal-content {
    background-color: white;
    padding: 20px;
    width: 300px !important;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease;
}

.modal-content i {
    font-size: 50px;
    color: #007bff;
    margin-bottom: 10px;
}

.modal-content h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.close {
    width: 90%;
    padding: 15px;
    margin: 10px auto;
    font-size: 16px;
    font-weight: bold;
    color: white !important;
    background-color: #333;
    font-family: "Inter", serif;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.qr-code {
    display: flex;
    justify-content: center;
    align-items: center;

    margin: 30px 0 30px;
}

.qr-code img {
    width: 80px;
    background-color: rgb(5 199 213);
    height: 80px;
    padding: 8px;
    border-radius: 13px;
}



.button {
    width: 90%;
    padding: 15px;
    margin: 10px auto;
    font-size: 16px;
    font-weight: bold;
    font-family: "Inter", serif;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.button.email {
    background-color: #343a40;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button.email:hover {
    transform: scale(1.03);

}

.button.app {
    background-color: #ffff !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #343a40;
}

.button.app:hover {
    transform: scale(1.03);
}

.terms {
    font-size: 14px;
    color: #888;
    margin-top: 18px;
    font-family: "Inter", serif;
}

.get_app {
    background-color: white;
    padding: 10px 13px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-weight: 800;
    text-align: start;
    border-radius: 25px;
    font-size: 17px;
    color: #333;
    rotate: 4deg;
    left: -6px;
    position: relative;
}

.d-block {
    display: block;
}

.d-block p {
    margin-top: -10px !important;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    text-align: center;

    display: none;
    z-index: 1000;
    width: 400px;
}

.popup input {
    width: 90%;
    padding: 10px;
    animation: fadeIn 0.3s ease;
    margin: 10px 0;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.popup button {
    width: 90%;
    padding: 15px;
    margin: 10px auto;
    font-size: 16px;
    font-weight: bold;
    font-family: "Inter", serif;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: white;
    background-color: #495057;
    justify-content: center;
    gap: 10px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.success-message {
    color: green;
    font-weight: bold;
}

.sign_in {
    font-size: 40px !important;
}

@media screen and (min-width: 1500px) {
    .qr-code {
        margin: 201px 0 51px;
    }

    .sticky-note {
        top: 80px;
    }
}

@media screen and (min-width: 1700px) {
    .qr-code {
        margin: 301px 0 51px;
    }

    .sticky-note {
        top: 180px;
    }
}