.adminContainer {
    height: 100%;
    margin: 50px auto;
}
.adminFormBg {
    background: #fff;
}
.adminContainer h1{
    font-size: 26px;
}
.adminContainer h3{
    font-size: 20px;
}
.adminContainer select {
    width: 100%;
    height: 38px;
    line-height: 38px;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: #686868;
    outline: none;
}
.adminContainer .form-group label.title {
    z-index: 1;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #686868;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    position: absolute;
    top: 0px;
    left: 0px;
    line-height: 38px;
}
.adminContainer .form-group .underline {
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #c7c7c7;
    padding: 0 0 2px 0;
}
.adminContainer .form-group input {
    width: 100%;
    z-index: 2;
    line-height: 38px;
    padding: 0 0px;
    margin: 0;
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    outline: none;
    position: relative;
    background: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: #686868;
}
.confirmationScreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #1b932a;
    z-index: 10;
    font-size: 30px;
    text-transform: uppercase;
    color: #fff;
	justify-content: center;
	align-items: center;
}
.confirmationScreen.error{
    background: #931b21;
	display: flex;
}
.confirmationScreen.success{
	display: flex;
}
.confirmationScreen .icon{
	text-align: center;
	font-size: 80px;
	margin: 0 0 20px;
	display: block;
}
.confirmationScreen .error{
	display: none;
}
.confirmationScreen.error .success{
	display: none;
}
.confirmationScreen.error .error{
	display: block;
}
.confirmationScreen .text{
	text-align: center;
	font-weight: bold;
}
