/* BASE CSS */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #F8B017;
    --error-color: #EC1C24;
    --secondary-color: #FFDCC9;
    --white-color: #ffffff;
    --text-color: #383838;
;
    --text-primary-color: #DA3832;
    ;
    --border-color: #D8D6DE;
    --placeholder-color: #B9B9C3;
}

button {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.text-primary-color {
    color: var(--primary-color) ;
}
.font-14 {
    font-size: 14px
}
input[type=number] {
    -moz-appearance: textfield;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    /* Ensure that the HTML and body elements cover the full height of the viewport */
    margin: 0;
}
body {
    font-family: 'Roboto', sans-serif;
}
label {
    color: #DA3832;
    font-weight: 600;
    font-size: 14px
}

.mt-24 {
    margin-top: 24px;
}
.mb-28 {
    margin-bottom: 28px;
}
.font-20{
    font-size: 20px;
}
.error-message {
    color: #DA3832;

    font-size: 14px;
    top: 100%;
}

.landing-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.landing-head{
    background: url('../img/bg-img.png') no-repeat center / cover;
}
.landing-foot {
    padding-top: 16px;
    padding-bottom: 16px;
    text-align: center;
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    background: var(--primary-color);
    height: 51px;
    margin-top: auto
}

.landing-head,
.landing-foot {
    margin-left: -15px;
    margin-right: -15px
}

.div-app {
    display: flex;
    flex-direction: column;
    background: #FAFAFA;
    padding: 40px;
    border-radius: 16px;

}

.landing-heading-app {
    font-size: 24px;
    font-weight: 700;
    color: #C8262D;



}

.landing-body__inner {
    background-color: #fff;
    /* White background for the inner content */
    padding: 20px;
    border-radius: 10px;
    /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    max-width: 400px;
    /* Maximum width for larger screens */
    width: 100%;
    /* Take full width on smaller screens */
    text-align: center;
    /* Center text inside */
    box-sizing: border-box;
    /* Include padding in width calculations */
}

/* Introduction Box */
.introduce-box {
    background-color: #ffe6e6;
    /* Light red background */
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.introduce-box__message {
    margin-bottom: 10px;
    font-weight: bold;
    color: #c00;
    /* Red color for emphasis */
}

/* Input and Button */
.introduce-box__code {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.introduce-box__code input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    flex: 1;
    text-align: center;
}

.copy-btn {
    padding: 10px 20px;
    background-color: #0056b3;
    /* Blue button */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.copy-btn:hover {
    background-color: #004494;
    /* Darker blue on hover */
}

.apps-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


@media (min-width: 768px) {
    .landing-body, .include-form {
        min-height: 100vh;
        background: url('../img/bg-img.png') no-repeat center / cover;

    }
    .container-image {
        padding-left: 164px;
    }
    .landing-head {
        display: none;
    }
    .container-banner {
        padding-top: 119px;
        padding-bottom: 119px;
        padding-left: 160px;
    }

    .container-login {
        padding-right: 160px;
        padding-top: 101px;
        padding-bottom: 101px;
    }

    .container-app {
        padding-right: 160px;
        padding-top: 101px;
        padding-bottom: 101px;

    }

    .login-form {
        width: 460px;
        padding: 36px 40px 36px 40px;
        border-radius: 16px;
        border-top: 8px solid var(--primary-color);
        margin-bottom: 24px;
        background: rgba(250, 250, 250, 1);
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);

    }

    .form-note span {
        color: var(--text-primary-color) !important;
        font-size: 14px
    }

    .form-note {
        font-weight: 400;
        font-size: 13px;
        line-height: 16.45px;
    }



}

/* For screens 768px and below */
@media (max-width: 768px) {
    .container-image img {
        margin: auto;
        display: block;
    }

    .landing-head {
        height: 170px;
        padding-right: 0 !important;
        padding-left: 0 !important;

    }

    .landing-container {
        background: transparent
    }

    .banner-section {
        display: none;
    }

    .landing-body {
        padding: 36px 25px 36px 25px
    }

    .landing-foot {
        height: 70px;
        padding: 16px
    }

}
