.button2 {
    display: inline-block;
    transition: all 0.2s ease-in; 
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #333333;
    padding: 0.7em 1.7em;
    cursor: pointer;
    font-size: 14px!important;
		font-weight: 600;
    border-radius: 0.5em;
    background: #FAFAFC;
    border: 1px solid #F09700;
    box-shadow: 2px 2px 6px #e5e5e5, -2px -2px 6px #ffffff;
}

.button2:active {
    color: #666;
    box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

.button2:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: #000000; /* Fallback-Farbe (Schwarz) */
    background-color: rgba(0, 0, 0, 0.05); 
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.button2:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #F09700;
    border-radius: 30%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.button2:hover {
    color: #ffffff;
    border: 1px solid #F09700;
}

.button2:hover:before {
    top: -35%;
    background-color: #F09700;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button2:hover:after {
    top: -45%;
    background-color: #F09700;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.gem-button, input[type='submit'] {
       position: relative;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    border: 0 none;
    vertical-align: middle;
    height: 20px;
		padding-top:15px;
		padding-bottom:15px;
    line-height: 25px;
    padding: 0 15px;
    font-size: 14px;
		font-weight:400;
    margin: 20px;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
     border-radius: 30%;
}
