@charset "UTF-8";
.welcome-page .logo {
  width: 64px;
}

.icon-banner {
  width: 32px;
}

.welcome-page li {
  list-style: none;
  padding: 4px;
}

.logged-out-page iframe {
  display: none;
  width: 0;
  height: 0;
}

.grants-page .card {
  margin-top: 20px;
  border-bottom: 1px solid lightgray;
}
.grants-page .card .card-title {
  font-size: 120%;
  font-weight: bold;
}
.grants-page .card .card-title img {
  width: 100px;
  height: 100px;
}
.grants-page .card label {
  font-weight: bold;
}

a {
  text-decoration: none !important;
}

.main-login .wrap-login {
  height: 100vh;
  background-image: url("../Uploads/Files/Images/photo_2024-08-13_14-21-23.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.main-login .wrap-login .form-login {
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
  width: 100%;
  height: 100%;
}
.main-login .wrap-login .form-login .form {
  width: 30rem;
  height: 35rem;
  background-color: rgba(0, 0, 0, 0.35);
  padding: 2rem 3rem;
  border-radius: 1rem;
  box-shadow: rgba(216, 218, 219, 0.3) 0px 1px 2px 0px, rgba(216, 218, 219, 0.3) 0px 2px 6px 2px;
}
.main-login .wrap-login .form-login .form .title {
  color: white;
  font-size: 1.5rem;
}
.main-login .wrap-login .form-login .form .wrap-input {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.main-login .wrap-login .form-login .form .wrap-input .input-username {
  display: flex;
  align-items: center;
  justify-content: end;
}
.main-login .wrap-login .form-login .form .wrap-input .input {
  display: flex;
  flex-direction: column;
}
.main-login .wrap-login .form-login .form .wrap-input .input .input-password {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-bottom: 0.5rem;
}
.main-login .wrap-login .form-login .form .wrap-input .warning {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.3rem;
  color: red;
  margin-left: 0.5rem;
}
.main-login .wrap-login .form-login .form input {
  position: relative;
  background-color: unset;
  width: 20rem;
  border-radius: 4rem;
  color: white;
  padding: 1.5rem;
}
.main-login .wrap-login .form-login .form input::-moz-placeholder {
  color: white;
  font-size: 0.8rem;
}
.main-login .wrap-login .form-login .form input::placeholder {
  color: white;
  font-size: 0.8rem;
}
.main-login .wrap-login .form-login .form .icon-user, .main-login .wrap-login .form-login .form .icon-passowrd {
  position: absolute;
  color: white;
  margin-right: 1rem;
}
.main-login .wrap-login .form-login .form .btn {
  background-color: #ffcc00;
  border-radius: 4rem;
  width: 20rem;
  padding: 0.7rem;
}

@media (max-width: 576px) {
  .main-login .wrap-login .form-login .form {
    width: 90vw;
  }
  .main-login .wrap-login .form-login .form input {
    width: 70vw;
  }
  .main-login .wrap-login .form-login .form .btn {
    width: 70vw;
  }
}
/*.button-submit {
    background-color: #2A67FF;
    border-radius: 1rem;
    color: white;
    border: none;
    font-size: 1.2rem;
    width: 100%;
    padding: 0.6rem;
}

.wrap-confirm {
    position: relative;
    display: flex;
    flex-direction: column;

    .alert-success {
        position: absolute;
        width: 100% !important;
        background-color: white;
        height: 15rem;
        border: solid 1px #C0C6CC;
        border-radius: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 1s;
        padding: 1rem;
        text-align: center;
        p {
        font-size: 1.5rem;

        }
        .button-goback {
            background-color: #2A67FF;
            padding: 0.5rem 1rem;
            color: white;
            border-radius: 1rem;


        }
    }
}

#dialog-success {
    display: none;
    .blur-overlay {
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);*/
/* Màu nền với độ mờ */
/*z-index: 9999;

        .form-dialog {
            background-color: #ffffff;
            border-radius: 1rem;
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
            padding: 1rem 3rem;

            .check-container {
                width: 6.25rem;
                height: 7.5rem;
                display: flex;
                flex-flow: column;
                align-items: center;
                justify-content: space-between;

                .check-background {
                    width: 100%;
                    height: calc(100% - 1.25rem);
                    background: linear-gradient(to bottom right, #5de593, #41d67c);
                    box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
                    transform: scale(0.84);
                    border-radius: 50%;
                    animation: animateContainer 0.75s ease-out forwards 0.75s;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    opacity: 0;

                    svg {
                        width: 65%;
                        transform: translateY(0.25rem);
                        stroke-dasharray: 80;
                        stroke-dashoffset: 80;
                        animation: animateCheck 0.35s forwards 0.25s ease-out;
                    }
                }

                .check-shadow {
                    bottom: calc(-15% - 5px);
                    left: 0;
                    border-radius: 50%;
                    background: radial-gradient( closest-side, rgba(73, 218, 131, 1), transparent );
                    animation: animateShadow 0.75s ease-out forwards 0.75s;
                }
            }

            .send-text {
                font-size: 1.2rem;
                font-weight: 600;
            }

            @keyframes animateContainer {
                0% {
                    opacity: 0;
                    transform: scale(0);
                    box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
                }

                25% {
                    opacity: 1;
                    transform: scale(0.9);
                    box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
                }

                43.75% {
                    transform: scale(1.15);
                    box-shadow: 0px 0px 0px 43.334px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
                }

                62.5% {
                    transform: scale(1);
                    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 21.667px rgba(255, 255, 255, 0.25) inset;
                }

                81.25% {
                    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
                }

                100% {
                    opacity: 1;
                    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
                }
            }

            @keyframes animateCheck {
                from {
                    stroke-dashoffset: 80;
                }

                to {
                    stroke-dashoffset: 0;
                }
            }

            @keyframes animateShadow {
                0% {
                    opacity: 0;
                    width: 100%;
                    height: 15%;
                }

                25% {
                    opacity: 0.25;
                }

                43.75% {
                    width: 40%;
                    height: 7%;
                    opacity: 0.35;
                }

                100% {
                    width: 85%;
                    height: 15%;
                    opacity: 0.25;
                }
            }
        }
    }

    .title-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: solid 1px #ebeaed;

        .title {
            text-align: center;
            font-size: 1.2rem;
            font-weight: 700;
            padding: 1rem;
        }

        .close {
            cursor: pointer;

            .icon-close {
                font-size: 1.2rem;
                margin-right: 1.25rem;
            }
        }
    }

    .form-question {
        padding: 0.6rem 4rem;

        .star-rating {
            width: 100%;
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            gap: 1rem;

            .rating {
                label {
                    font-size: 1.5rem;
                    cursor: pointer;
                    color: #c5c5c5;

                    &:hover {
                        ~ {
                            label {
                                color: #c5c5c5;
                            }
                        }
                    }
                }

                &:hover {
                    label {
                        color: #d32926;
                    }
                }

                input[type="radio"] {
                    height: 0;
                    left: 0;
                    opacity: 0;
                    overflow: hidden;
                    position: absolute;
                    top: 0;
                    width: 0;
                }
            }
        }

        .input-wrap {
            margin-bottom: 1rem;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 2rem;
            background-color: #eeeeee;
            padding: 2rem;

            .text-area {
                border: solid 1px #bebebe;
                padding: 0.6rem;
                flex-grow: 1;
                outline: none;
            }
        }

        .show-name {
            .show-name-hidden {
                display: none;
                font-size: 0.9rem;
                margin-left: 1rem;
                opacity: 0.7;
            }
        }

        .button-sent {
            display: flex;
            justify-content: space-between;
            align-items: center;

            .button-submit {
                border: none;
                background-color: #3651a6;
                color: #ffffff;
                padding: 0.6rem 4rem;
            }
        }
    }
}

#button-success {
    width: 100%;
    background-color: #52DF8A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0.6rem 0;
    border: none;
    border-radius: 0.6rem;
    margin-top: 2rem;
}

.form-label {
    font-size: 1.5rem;
    font-weight: 500;
}

.input-submit {
    width: 100%;
    padding: 1rem;
}

.input-submit:focus {
    outline: none;
}*/
/* @media (max-width:576px) {
    .main-login {
        .wrap-login {
            .banner-login {
                display: none;
            }

            .content {
                width: 100%;
                padding: 0 2rem;
                height: 100vh;
            }
        }
    }
}

@media (min-width:576px) and (max-width:1365px) {
    .main-login {
        .wrap-login {
            .banner-login {
                display: none;
            }

            .content {
                width: 100%;
                padding: 0 6rem;
                height: 100vh;
            }
        }
    }
} *//*# sourceMappingURL=site.css.map */