
*{
    outline: 0;
    user-select: none;
    caret-color: 	#d33;
    max-width: 100%;
    
}
*::selection{
    background-color: tomato;
    color: white;

}
body,html{
    margin: 0;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
}
body{
    /* height: 100vh; */
}
.tipBox{
    display: inline-flex;
    flex-direction: row;
    justify-content: space-between;
    position: sticky;
    top: 20px;
    width: 100%;
    height: 0;
}
.tipBox > .tip_contents{
    display: inline-flex;
    position: relative;
    width: auto;
    height: 650px;
    border-radius: 3px;
    padding: 20px;
    background: white;
    box-shadow: var(--shadow-color);
    z-index: 1;
}
.tipBox > .left.tip_contents{
    left: 20px;
}
.tipBox > .right.tip_contents{
    right: 20px;
}
.tipBox > .right.tip_contents > *{
    zoom: .38;
}
.container{
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 700px;
    background: white;
    border-radius: 8px;
    min-height: 600px;
    box-shadow: var(--shadow-color);
    padding: 20px 10px;
    box-sizing: border-box;
}

.titleBox{
    width: 100%;
    text-align: center;
}
.contents{
    width: 500px;
    box-sizing: border-box;
}
.contents > .item{
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    margin: 10px 0;
}
.contents > .item > :nth-of-type(1){
    margin: 6px 0;
}
.contents > .item > input{
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid rgb(235, 235, 235);
    border-radius: 2px;
    transition: all .0;
}
.contents > .item > input:focus{
    border:1px solid #eb640a;
    transition: all .35s;
}
.contents > .item > input::placeholder{
    /* color: rgb(235, 100, 10); */
}
.contents > .item > input[type="submit"] {
    padding: 30px;
    text-align: center;
    height: auto;
    border-radius: 4px;
    width: 100%;
    background: var(--submit-color);
    border: none;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 1s;
    box-shadow: var(--shadow-color) inset;
    margin:50px 0;
}
.contents > .item > input[type="submit"]:hover {
    box-shadow: var(--button-shadow-color);
    /* color: rgb(87, 87, 87); */
}
input[type^="date"]::-webkit-calendar-picker-indicator,
input[type^="date"]::-webkit-inner-spin-button {
    /* display: none;
    appearance: none; */
    cursor: pointer;
}   
select{
    appearance: none;
}