body {
    font-family: Arial, sans-serif;
    background: #f4f4f9;
    color: #222;
    text-align: center;
    padding: 30px;
    line-height: 50px;
}

h1 {
    color: #333;
}

input,
select {
    margin: 5px;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #aaa;
}

#output {
    margin-top: 20px;
    font-weight: bold;
}

.button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: none;
    color: #0f1923;
    cursor: pointer;
    position: relative;
    padding: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    transition: all .15s ease;
}

.button::before,
.button::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    height: calc(50% - 5px);
    border: 1px solid #7D8082;
    transition: all .15s ease;
}

.button::before {
    top: 0;
    border-bottom-width: 0;
}

.button::after {
    bottom: 0;
    border-top-width: 0;
}

.button:active,
.button:focus {
    outline: none;
}

.button:active::before,
.button:active::after {
    right: 3px;
    left: 3px;
}

.button:active::before {
    top: 3px;
}

.button:active::after {
    bottom: 3px;
}

.button_lg {
    position: relative;
    display: block;
    padding: 10px 20px;
    color: #fff;
    background-color: #001c38;
    overflow: hidden;
    box-shadow: inset 0px 0px 0px 1px transparent;
}

.button_lg::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background-color: #001c38;
}

.button_lg::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 4px;
    height: 4px;
    background-color: #001c38;
    transition: all .2s ease;
}

.button_sl {
    display: block;
    position: absolute;
    top: 0;
    bottom: -1px;
    left: -8px;
    width: 0;
    background-color: #ff4800;
    transform: skew(-15deg);
    transition: all .2s ease;
}

.button_text {
    position: relative;
}

.button:hover {
    color: #001c38;
}

.button:hover .button_sl {
    width: calc(100% + 15px);
}

.button:hover .button_lg::after {
    background-color: #fff;
}

.button_general{
    color: #f4f4f9;
    background: #001c38;
    padding: 10px 5px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: all ease-in-out 0.1s;
    border-style: none;
}
.button_general:hover{
    border-radius: 1px;
    background: #ff4800;
}
.input{
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
}
.input:hover{
    border-color: #ff4800;
}
.input:focus{
    border-color: #ff4800;
    border-width: 2px;
    border-style: dashed;
}