body{
    margin: 0;
    padding: 0;
    color: white;
    font-size: 22px;
}

input[type="radio"], input[type="checkbox"] {
    border: 1px solid;
}

input::placeholder, .text-placeholder {
    color: rgba(0, 0, 0, 0.8) !important;
    font-weight: 500;
    font-size: 0.9rem;
}

small{
    font-size: 0.9rem;
}

.no-scroll-pc{
    overflow: hidden;
}

.header-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-primary {
    font-size: 32px;
    background-color: #fff;
    color: #00418E;
    border-radius: 20px;
    border: none;
    padding: 5px 20px;
    font-weight: bold;
}


.btn-secondary {
    font-size: 24px;
    background-color: #00418E;
    color: #fff;
    border-radius: 20px;
    border: none;
    padding: 5px 20px;
    font-weight: bold;
}


.form {
    color: #00418E;
    font-weight: 500;
    font-size: 1rem;
}

.hp-block{
    margin-top: 30px;
    margin-bottom: 30px;
    color: #00418E;
    font-size: 1rem;
}

.hidden-text{
    color: transparent;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.sm-show{
    display: none;
}

.no-scroll{
    overflow: hidden;
}

.hover-click:hover{
    cursor: pointer;
}

.after_login{
    background-image: url("/img/bg2.jpg");
    background-size:cover;
}

.grid-container {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
}

.grid-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distributes space between elements */
    text-align: center;
    height: 100%; /* Ensure the grid items take full height */
}

.circle-container {
    position: relative;
    width: 50%;
    margin: 0 auto;
    aspect-ratio: 1;
    border-radius: 10000px;
    overflow: hidden;
}

.circle-container img {
    width: 100%;
}

.info-flex{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    }

    .after_login{
        background-image: url("/img/bg_mobile_2.jpg");
    }

    .main-button {
    width: 300px;
    }
    .no-scroll-pc{
        overflow: auto;
    }
    .sm-show{
        display: block;
    }
    .sm-hide{
        display: none;
    }

}
