* { box-sizing:border-box; }

body {
	font-family: 'Roboto', sans-serif;
	color: #000000;
	-webkit-font-smoothing: antialiased;	
}

body.base {
    background: #F8F8F9; /* For browsers that do not support gradients */
}

body.warning {
	background: #f2b72c; /* For browsers that do not support gradients */
	background: -webkit-linear-gradient(left, #f2b72c , #FFFFFF); /* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(right, #f2b72c, #FFFFFF); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(right, #f2b72c, #FFFFFF); /* For Firefox 3.6 to 15 */
	background: linear-gradient(to right, #f2b72c , #FFFFFF); /* Standard syntax */	
}

@media screen and (max-width: 500px) {
    .outer {
        transform: scale(0.9);
    }
}

a { text-decoration: none;}

#logo {
    margin-bottom: 56px;	
   width: 93px;
   height: 29px;
   border: 0px;
}

#welcome {
   margin: 0px auto 16px auto;
}

.explanation-text {
    font-size: 18px;
}

.title {
    font-size: 48px;
    font-weight: 400;
 }
 
 .title1 {
	font-size: 40px;
}

.title2 {
	font-size: 16px;
	font-weight: bold;
}

#show_pwd, #clear_pwd {
	font-size: 16px;
	color: #2196f3;
	margin-bottom: 31px;	
}

#warning_msg {
	min-height: 96px;
	padding: 20px 32px 18px 32px;
	background-color: #fdf1d4;
	font-size: 16px;
	width: inherit;
	margin: 24px 0 24px -32px;
}

#recovery_msg {
	font-size: 16px;
	width: inherit;
	padding: 20px 32px 18px 32px;
	margin: 0 0 24px -32px;
}

hgroup {
    text-align: center;
    margin-top: 4em;
}
h1,
h3 {
    font-weight: 600;
}
h3 {
    color: #2196f3;
}
form {
    margin: 2em auto auto auto;
}
.group {
    position: relative;
    height: 56px;
}

.group.error label {
    color: #DE3919 !important;
}

.group.error .bar:after,
.group.error .bar:before {
    background-color: #DE3919 !important;
}

.standard-input {
	font: inherit;
    padding: 25px 12px 12px 12px;
    font-size: 16px;
    -webkit-appearance: none;
    display: block;
    background: #EEEEF0;
    color: #000;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 2px 2px 0px 0px;
    border-bottom: 1px solid #757575;
}

.standard-input:focus {
    outline: none;
    border-width: 0px;
}

.outer {
    display: table;
    position: absolute;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}
.middle {
    display: table-cell;
    vertical-align: middle;
}

.form_container {
    border-radius: 18px;
    border: 1px solid #EBEAED;
    background-color: #ffffff;
    width: 480px;
    height: 590px;
    padding: 2em 2em 2em 2em;
    margin-left: auto;
    margin-right: auto; 
}

.migration-form {
    width: 935px !important;
}

#user-show-password,
#email-show-password {
    float: right;
    vertical-align: bottom;
    text-align: center;
    margin-top: -28px;
    cursor: pointer;
}

/* Label */

input ~ label {
    color: #999;
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    top: 18px;
    padding-left: 12px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

/* active */
input:focus ~ label, .notempty ~ label {
    top: 8px;
    font-size: 12px;
}

input:focus ~ label {
    color: #2196F3;
}

/* Underline */

.bar {
    position: relative;
    display: block;
    width: 100%;
}
.bar:before,
.bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #2196f3;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.bar:before {
    left: 50%;
}
.bar:after {
    right: 50%;
}
/* active */

input:focus ~ .bar:before,
input:focus ~ .bar:after {
    width: 50%;
}
/* Highlight */

.highlight {
    position: absolute;
    height: 60%;
    width: 100%;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}
/* active */

input:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}
/* Animations */

@-webkit-keyframes inputHighlighter {
    from {
        background: #2196f3;
    }
    to {
        width: 0;
        background: transparent;
    }
}
@keyframes inputHighlighter {
    from {
        background: #2196f3;
    }
    to {
        width: 0;
        background: transparent;
    }
}

.submit {
    width: 100%;
    border-style: none;
    font-size: 20px;
    height: 48px;
    border-radius: 4px;
    cursor: pointer;
    background: black;
    color: white;
    outline: 0;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 5px 0 rgba(0, 0, 0, 0.2);
    background-position: center;
    transition: background 0.8s;
}

/* !important is used here to make sure that the disabled
 * state takes priority over the :hover state 
*/
.submit:disabled {
    background: #EEEEF0 !important;
    cursor: default !important;
    color: #D1D0D7 !important;
    box-shadow: none !important;
}

.submit:hover {
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14),
  0 3px 14px 2px rgba(0, 0, 0, 0.12),
  0 5px 5px -3px rgba(0, 0, 0, 0.2);
  background: #323232 radial-gradient(circle, transparent 1%, #323232 1%) center/15000%;
}

.submit:active {
    background-color: #0000003D;
    background-size: 100%;
    transition: background 0s;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.contactus-container {
    width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
}

.contactus-migration-container {
    width: 935px !important;
}

.contactus-link {
    color: #585858;
    margin-left: 38px;
    font-size: 14px;
    font-weight: 500;
    outline: none;
}

.contactus-link:hover,
.contactus-link:focus {
    color: #2196F3;
    text-decoration: underline;
}

.link,
.link:visited {
    color: #2196F3;
    cursor: pointer;
    font-size: 18px;
    outline: none;
}

.link:hover,
.link:focus {
    text-decoration: underline;
    color: #4DABF5;
}

#changeaccountlink {
    margin-bottom: 32px;
}

.name {
    font-weight: 600;
    font-size: 48px;
}

.otp-message {
    display: flex;
}

.otp-envelope {
    margin-right: 16px;
}

.user-email {
    font-size: 20px;
}

.otp-fields {
    display: flex;
    
}

.otp-field {
    background-color: #EDEDEE;
    border-radius: 2px;
    margin-right: 16px; 
    border: none;
    width: 56px;
    height: 56px;
    text-align: center;
    color: black;
    font-size: 24px;
    padding: 14px 0px;
    text-transform: uppercase;
}

.otp-field:focus {
    border: 2px solid #2196F3;
    outline: none;
}

.otp-field-valid {
    background-color: #E1FACC;
}

.checked {
    color: #54B51F;
    font-size: 167px;
}

.check-container {
    margin-top: 96px;
    text-align: center;
}

.small-label {
    font-size: 12px;
}

.error-background {
    background: transparent radial-gradient(closest-side at 114% -13%, #FFFFFF 0%, #F2B72C 100%) 0% 0% no-repeat padding-box !important;
    opacity: 1;
}

.error-message {
    font-size: 24px;
    font-weight: bold;
}

.error-explanation {
    font-size: 24px;
}

.error-text {
    color: #DE3919;
    font-size: 16px;
}

.error-input-label {
    color: #DE3919;
    font-size: 12px;
}

.otp-error {
    border: 2px solid #DE3919 !important;
}

.hidden {
    color: transparent !important;
}

.input-description {
    font-size: 12px;
    color: #999999;
}