body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}



.login-container {
    background-color: rgba(255, 255, 255, 0.75);
    color: black;
    padding: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    width:350px;
    max-width: 350px;
    position: relative;
    z-index: 2;
}


h1 {
    margin-bottom: 15px;
    margin-top: -10px;
    font-weight: 300;
    font-size: 24px;
    letter-spacing: .25em;
    font-style: italic;
    color: #000;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-container,.input-container1 {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 5px 0;
    border: 1px solid #ccc;
}

.icon {
    padding: 10px;
    color: #000;
    background: #fff;
    border-right: 1px solid #ccc;
}

input {
    flex: 1;
    padding: 10px;
    border: none;
    background: #fff;
    outline: none;
    appearance: none;
    border-radius:0;
}

::placeholder {
    letter-spacing: 3px;
    font-size: 14px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #1187ee;
    background-color: #fff;
    transition: background-color 99999s ease-in-out 0s;
}

button {
    background-color: #0056b3;
    transition: all 0.1s ease-in-out;
    color: #FBFBFB;
    border: none;
    border-radius: 3px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    margin-left: auto;
    margin-top: 25px;
}

button:hover {
    background-color: #006CE6;
    font-style: italic;
}

.verifyCodeButton[disabled], #loginbutton[disabled] {
    background-color: #ccc!important;
}

.forgot-password {
    text-align: right;
    margin-top: 5px;
}

#forgotPassword {
    color: #007bff;
    text-decoration: none;
}

#forgotPassword:hover {
    text-decoration: underline;
}



.infobox_message {
	overflow: hidden;
	z-index: 9999!important;
	color: #333;
	font-family: 'Roboto',sans-serif;
	background-color: #ededed;
	border-radius: 4px;
	box-shadow: 0 0 13px 7px rgba(0,0,0,0.68);
	margin: 0 auto;
	width: 300px;
	min-height: 73px;
	height: auto;
	padding: 0;
	position: fixed;
	left: 50%;
    top:0;
	margin-right: -50%;
	transform: translate(-50%, 5px);
	word-wrap: break-word;
}

.infobox_message:not(:first-child){
	margin-top:15px;
}

.infobox_message .infobox_title {
	font-size: 14px;
	line-height: 25px;
	font-weight: bolder;
	color: #FFF;
	box-shadow: 5px 5px 4px -3px rgba(194,192,194,1);
	border-bottom: 1px solid #8e653c;
	padding: 0 10px;
}

.infobox_message .infobox_messagetext {
	margin-left: 10px;
	font-size: 14px;
	line-height: 20px;
	padding: 10px;
}

._error {
	background-color: #CC3300;
}

._warning {
	background-color: #FCE96D;
	color: #f00!important;
}

._success {
	background-color: #0C6;
}

._info {
	background-color: #3f69a8;
}


.color_red {
	color: #CC3300;
	font-size: 22px;
	font-weight: bold;
}