* {
    font-family: "Rajdhani", sans-serif;
}

body {
    background: rgb(244, 236, 238);
    background-repeat: repeat-y;
    background-size: cover;
    overflow-x: hidden;
    margin: auto;
    padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px !important;
    text-align: center;
}

.wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
}

.devices {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;

    gap: 2rem;

    box-sizing: border-box;
}

#androidDiv,
#iosDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    width: 300px;
    height: 600px;
    cursor: pointer;
}

#androidDiv:hover>img,
#iosDiv:hover>img {
    transform: translateY(-20px);
}

#androidDiv img,
#iosDiv img {
    width: 100%;
    height: 600px;
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}



#androidDiv a,
#iosDiv a {
    display: flex;
    background: black;
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.3rem;
    width: 80%;
    font-weight: 600;
    border-radius: 2rem;
    flex-direction: row;
    justify-content: space-between;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#androidDiv a:hover,
#iosDiv a:hover {
    transform: scale(1.06);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.3);
}

#androidDiv a img,
#iosDiv a img {
    height: 24px;
    width: 24px;
    object-fit: contain;
}

#androidDiv a span,
#iosDiv a span {
    font-size: 15px;
}

.flavourFrameIntro {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    text-align: center;

}

.flavourFrameIntro img {
    width: 220px;
    margin: 1rem 0px;
}

.flavourFrameContentIntro {
    max-width: 50%;
    margin: 1rem 0px;
}

.qrCode {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    box-sizing: border-box;
    width: auto;
    padding: 3rem;
    flex-direction: column;
    background: white;
    border-radius: 2rem;
    margin: 2rem 0px;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;

}

.qrCode h2 {
    font-weight: 800;
    font-size: 1.2rem;

}

.qrCode img {
    width: 200px;
    margin-bottom: 0.5rem;
}

.userNameProfile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-image: linear-gradient(to right bottom,
            #ff5c37,
            #ee5c32,
            #dd5b2e,
            #cd5a2b,
            #bd5829,
            #b65a2b,
            #af5c2d,
            #a85d2f,
            #a86335,
            #a9693c,
            #a96e43,
            #a9744a);
    border-radius: 20px;
    color: white;
    font-weight: bold;
    user-select: none;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(255, 92, 55, 0.2);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.userNameProfile:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(255, 92, 55, 0.5);
    text-shadow: 2px 5px 10px rgba(0, 0, 0, 0.7);
}

.beta-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    backdrop-filter: blur(20px);
}

.beta-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.beta-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 2em;
    line-height: 2em;

    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: auto;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    background: black;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
}

.beta-close:hover {
    transform: scale(1.1);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
}

h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
    text-align: center;
}

input[type="text"],
input[type="email"],
select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #0056b3;
}

button:disabled {
    opacity: 0.5;
    background: black;

}

button:disabled:hover {
    opacity: 0.5;
    background: black;

}

label {
    display: inline-block;
    margin: 10px 0;
    font-size: 16px;
}

input[type="checkbox"] {
    margin-right: 10px;
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
    .devices {
        display: flex;
        flex-direction: column !important;
    }

    .flavourFrameIntro {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1rem;
        width: 100% !important;
        margin: 1rem 0px;
    }

    .flavourFrameIntro img {
        width: 35vw !important;
    }

    .flavourFrameContentIntro {
        max-width: 100% !important;
        text-align: center;
    }

    #androidDiv,
    #iosDiv {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column !important;
        gap: 1.5rem;
        width: 100% !important;
        cursor: pointer;
    }

    .phoneMockup {
        transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
        object-fit: contain !important;
    }

    #androidDiv a,
    #iosDiv a {
        position: fixed !important;
        bottom: 5vh;
        background: rgba(0, 114, 229, 0.365);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        align-items: center;
        height: 7vh !important;
        border-radius: 3vh;
    }

    #androidDiv a span,
    #iosDiv a span {
        font-size: 18px;
    }

    #androidDiv a img,
    #iosDiv a img {
        height: 5vw;
        width: 5vw;
        object-fit: contain;
    }

    .beta-popup {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 9999;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-sizing: border-box;
        justify-content: center;
        align-items: center;
    }

    .beta-popup-content {
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        padding: 40px;
        width: 95%;
        max-width: 100% !important;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    button {
        padding: 10px 20px;
        background-color: #000000;
        border: none;

        color: #fff;

        cursor: pointer;
        transition: background-color 0.2s;
        width: 100%;
        border-radius: 20px;
        margin: 1rem 0px;
        height: 5vh;
        border-radius: 3vh;
        font-size: 1.2rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    button:hover {
        background-color: #0056b3;
    }

    #downloadBtn {
        padding: 10px 20px;
        background-color: #000000;
        border: none;
        color: #fff;
        cursor: pointer;
        transition: background-color 0.2s;
        width: 100%;
        border-radius: 20px;
        margin: 1rem 0px;
        height: 5vh;
        border-radius: 3vh;
        font-size: 1.2rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    #downloadBtn:hover {
        background-color: #0056b3;
    }

    .wrapper {

        width: 100%;
        padding: 1rem;
        padding-bottom: 5vh;
    }
}

@media only screen and (max-device-width: 1024px) {
    /* CSS rules here */
}