@font-face {
    font-family: 'Ginora Sans';
    src: url('../fonts/ginora_sans/Ginขra\ Sans\ Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Ginora Sans';
    src: url('../fonts/ginora_sans/Ginขra\ Sans\ Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Ginora Sans';
    src: url('../fonts/ginora_sans/Ginขra\ Sans\ Oblique.otf') format('opentype');
    font-weight: normal;
    font-style: oblique;
}

@font-face {
    font-family: 'Ginora Sans';
    src: url('../fonts/ginora_sans/Ginขra\ Sans\ Light.otf') format('opentype');
    font-weight: lighter;
}

@font-face {
    font-family: 'Magdafe';
    src: url('../fonts/Magdafe.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/static/Montserrat-Regular.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/static/Montserrat-Bold.ttf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/static/Montserrat-Light.ttf') format('opentype');
    font-weight: lighter;
}


body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif !important;
}

.container {
    display: flex;
    width: 100vw;
    height: 100vh;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.right-section {
    background-color: #F26A8D;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    width: 60vw;
}

.right-section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 60%;
}

@media (max-width: 767px) {
    body {
        background-image: url('../background.jpg');
        background-repeat: repeat;
    }
    .container {
        display: block;
    }
    .right-section {
        width: 100vw;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .left-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .right-section-content {
        width: 90%;
    }
}

@media (min-width: 768px) {
    .left-section {
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-image: url('../background.jpg');
        background-repeat: repeat;
        width: 40vw;
    }
    .right-section {
        padding: 40px;
    }
}

.logo {
    text-align: center;
}

.logo img {
    width: 50%;
}

.right-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Magdafe';
}

.right-section p {
    font-size: 18px;
    margin: 10px 0;
    line-height: 1.6;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.social-icons i {
    color: #FFF;
    font-size: 22px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.app-buttons img {
    width: 200px;
}