body {
    margin: 0;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #282a36;
    height: 100vh;
    color: #fff;
}

.otp-field {
    display: flex;
}

.otp-field input {
    width: 500px;
    font-size: 20px;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    margin: 0px;
    border: 2px solid #55525c;
    background: #21232d;
    font-weight: bold;
    color: #fff;
    outline: none;
    transition: all 0.1s;
	
}

.otp-field input:focus {
    border: 2px solid #7a0d37;
    box-shadow: 0 0 2px 2px #7a0d37;
}

.disabled {
    opacity: 0.5;
}

.space {
    margin-right: 1rem !important;
	
}

.button input {
    width: 300px;
    font-size: 24px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    margin: 2px;
    border: 2px solid #7a0d37;
    background: #7a0d37;
    font-weight: bold;
    color: #FFF;
    outline: none;
	margin-top:15px;
    transition: all 0.1s;
}
.button input:hover {
    border: 2px solid #282a36;
	background: #282a36;
	color:#fff;
    box-shadow: 0 0 2px 2px #7a0d37;
}
.button input:focus {
    border: 2px solid #282a36;
	background: #282a36;
	color:#fff;
    box-shadow: 0 0 2px 2px #7a0d37;
}
a{
	
	color: white;
	
}
a:hover{
	
	color: #7a0d37;
	text-decoration: underline;
}
h4 {
	
	font-size: 12px;
	color: WHITE;
	font-family: sans-serif;
}
