select {
    /* width: 400px; */
    max-width: 100%;
    padding: 6px 8px;
    margin: 8px 0;
    display: inline-block;
    border: 2px solid #819FF7;
    border-radius: 6px;
    background: #FAFAFA;
    font-size: 16px;
    box-shadow: 2px 2px 5px black;
    transition: all ease-in-out 300ms;
}

input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="file"],
textarea {
    /* width: 400px; */
    max-width: 100%;
    padding: 6px 8px;
    margin: 8px 0;
    display: inline-block;
    border: 2px solid #819FF7;
    border-radius: 6px;
    background: #FAFAFA;
    font-size: 15px;
    box-shadow: 2px 2px 5px black;
    transition: all ease-in-out 300ms;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: none;
    transform: scale(1.04);
    box-shadow: 3px 2px 6px black;
    border-color: #3e3eff;
}

input[type="checkbox"],
input[type="radio"] {
    /* box-shadow: 2px 2px 5px black; */
    margin: 0 7px 5px 0;
    transition: all 300ms ease-in-out;
    filter: drop-shadow(2px 2px 3px black);
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
    transform: scale(1.04);

}

input[type="text"]:disabled,
input[type="email"]:disabled,
input[type="search"]:disabled,
input[type="password"]:disabled,
input[type="file"]:disabled,
textarea:disabled {
    background-color: #cac8c8;
    color: black;
    border-color: #888;
    box-shadow: 0px 0px 2px black inset;
}

input[type=submit] {
    background: #3eaefb;
    border-radius: 10px;
    box-shadow: 1px 1px 4px #212121;
    color: black;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px 10px 20px;
    border: 1px solid black;
    transition: all 300ms ease-in-out;
}

input[type=submit]:hover {
    background: #3cb0fd;
    transform: scale(1.04);
}

.has-background-info {
    /* background-color: #9bffdd; */
    background-color: #ff6c01cc;
}

.prev,
.next {
    background-color: #e8e8e8;
}

.day {
    border: 1px solid #e6e6e6;
    box-shadow: 0 0 4px #9f9f9f inset, 0 0 2px black;
}

.tooltip {
    width: 100%;
    height: 100%;
}