body {
    color: #232323;
    font-size: 1.95em;    
    font-family: Arial, sans-serif;
}

div#success {
    text-align: center;
    box-shadow: 1px 1px 5px #455644;
    background: #bae8ba;
    padding: 10px;
    border-radius: 3px;
    margin: 0 auto;
    width: 350px;
}

.inputBox {
    width: 100%;
    margin: 5px 0px 15px 0px;
    border: #dedede 1px solid;
    box-sizing: border-box;
    padding: 15px;
}

#login-popup {
    position: absolute;
	z-index: 10;
    top: 25%;
    left: 25%;
    width: 800px;
    background: #FFFFFF;
    display: none;
    color: #676767;
	border: 2px solid #2A9DF4;
}


#login-icon {
    padding: 1px 1px 1px 1px;
    width: 258px;
    color: white;
    box-shadow: 1px 1px 5px grey;
    border-radius: 3px;
    cursor: pointer;
    margin: 1px auto;
	text-align: center;
	background-color: green;
}

.info {
    color: #d30a0a;
    letter-spacing: 2px;
    padding-left: 5px;
}

#send {
    background-color: #09F;
    border: 1px solid #1398f1;
    font-family: Arial;
    color: white;
    width: 99%;
    padding: 10px 0px 10px 0px;
    cursor: pointer;
}

#login-popup h1 {
    font-weight: normal;
    text-align: center;
    margin: 10px 0px 20px 0px;
}

.input-error {
    border: #e66262 1px solid;
}

/* Popup close button */
.close-button {
    width: 25px;
    height: 25px;
    position: absolute;
    top: -10px;
    right: -10px;
    border-radius: 20px;
    background: rgba(0,0,0,0.8);
    font-size: 20px;
    text-align: center;
    color: #fff;
    text-decoration:none;
}