.registration {
    background: rgba(0,0,0,0.5);
    max-width: 50%;
    margin: auto;
    margin-top: 3vw;
    justify-content: left;
	border-radius: 20px;
}
.reg-form {
    color: #6f7f87;
    box-sizing: border-box;
    margin: auto;
}
.form-data {
    box-sizing: border-box;
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    padding: 35px;
}
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}
input[type=text] {
    margin: 6px 0 12px 0;
    height: 30px;
    width: 100%;
    font-size: 1.1em;
    border: 0;
    background: none;
    border-bottom: 1px solid #3f4650;
}
.calendarflex {
    display: flex;
}
select {
    background-color: #c3c5d3;
    font-size: 1.1em;
    height: 35px;
    width: 100%;
    color: #6e7277;
    padding-left: 10px;
    border: 0;
    T-VARIANT: JIS04;
    border: 1px solid #3f4650;
    margin-top: 18px;
}
.btn-code-div {
    margin: auto;
    margin-top: 2vw;
    flex: 1;
    width: 13vw;
}
input[type="submit" i] {
    appearance: auto;
    user-select: none;
    white-space: pre;
    align-items: flex-start;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    background-color: buttonface;
    color: buttontext;
    padding: 1px 6px;
    border-width: 2px;
    border-style: outset;
    border-color: buttonborder;
    border-image: initial;
    font-weight: 500;
}
.roll, .roll2, .reroll, .reroll2, .btn-code {
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    padding: 0.5vw 1.25vw !important;
    color: red !important;
    border: 0.15vw solid #fd0202;
    border-radius: 5px;
    background-color: #c3c5d3 !important;
    text-transform: none;
    box-shadow: 0 0 4vw #fff6f6dc;
}
.reroll:hover,.reroll2:hover,.roll:hover,.roll2:hover, .btn-code:hover{
	box-shadow: 0 0 3vw #e2464669;
	background: #ffffff;
	color: #fff !important;
}
input[id=id_purch_mb]:hover {
    border: 0;
    border-bottom: 1px solid #aaa;
    transition: .5s border-bottom;
}

input[id=id_purch_mb] {
    color: #6f7f87;
    margin: 6px 0 12px 0;
    height: 35px;
    width: 99%;
    font-size: 1.1em;
    border: 0;
    background: none;
    border-bottom: 1px solid #3f4650;
}
.anim1 {
	animation: pulsating 3s linear infinite;
}
.msiText.anim1:hover{
	transform: scale(0.5) !important;
	color: #de00ff;
	text-shadow: -1px 1px 0 #de00ff, 0px 5px 3px black;
}

@keyframes pulsating {
	0% {
     transform: scale(1, 1);
    }

    50% {
     transform: scale(1.1, 1.1);
    }

    100% {
    transform: scale(1, 1);
    }
}