
.moreinfo1  {
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.moreinfo1 .container {
    --bs-gutter-x: 0;
}
/* more info button */
.moreinfo1 .btn-moreinfo {
    display: block;
    width: 100%;
    background: linear-gradient(to bottom, #f7b61b, #f79f1e);
    color: #ffffff;
    font-size: 4vw;
    font-family: Arial, sans-serif;
    font-weight: bold;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 0px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        /* Inner top highlight */
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        /* Inner bottom shadow */
        0 4px 6px rgba(0, 0, 0, 0.4),
        /* Outer bottom shadow */
        0 -4px 6px rgba(255, 255, 255, 0.2);
    /* Outer top highlight */
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.moreinfo1 .btn-moreinfo:hover {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        0 2px 3px rgba(0, 0, 0, 0.4),
        0 -2px 3px rgba(255, 255, 255, 0.2);
}

.moreinfo1 .btn-moreinfo:active {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        0 1px 1.5px rgba(0, 0, 0, 0.4),
        0 -1px 1.5px rgba(255, 255, 255, 0.2);
    transform: translateY(2px);
}

/* form */
.moreinfobox {
    display: block;
    font-size: 2vw;
    background-color: #cfcfcf;
    padding-top: 25px;
    padding-bottom: 25px;
}
.appleish-form .mb-3 {
    text-align: left;
}
.appleish-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.appleish-form .form-label {
    font-weight: bold;
    color: #333333;
}

.appleish-form .form-control {
    border-radius: 0.5rem;
    border: 1px solid #cccccc;
    padding: 0.75rem;
    font-size: 1rem;
}

.appleish-form .form-control:focus {
    border-color: #007aff;
    box-shadow: 0 0 5px rgba(0, 122, 255, 0.5);
}

.appleish-form .btn-custom {
    background-color: #007aff;
    /* Apple blue */
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.appleish-form .btn-custom:hover {
    background-color: #005bb5;
}
.appleish-form .btn-custom img {
    height: auto;
    width: 3vw;
}

@media (max-width: 900px) and (orientation: portrait) {
    .moreinfo1 .btn-moreinfo {
        font-size: 8vw;
    }
    .moreinfobox {
        font-size: 6vw;
    }
    .appleish-form .btn-custom img {
        width: 6vw;
    }
}
