@charset "utf-8";
/* CSS Document */

/* login */
.signin-form, signup-form{
    margin-top: 120px;
    font-size: .9em;
}

.signin-form .box-body{
	margin-right: 0px;
	padding-right: 20px;
}

.recover-account{
	text-align: center;
	margin-top: 20px;
	margin-bottom: 0px;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
}


.term-of-use{
	border: 1px dashed #999;
	color: #333333;
	font-size: 0.8em;
	padding: 5px;
}
.term-of-use > a{
    color: #2E8DEF;
}

.term-of-use > a:hover{
    color: #2E8DEF;
    text-decoration: underline;
}
/* end login */

/* box */
/* box default */
.box{
	position: relative;
	width: 100%;
	max-width: 400px;
	background-size:100% 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
    /*margin-bottom: 40px;*/
/*    border: 1px solid #CDCDCD;*/
}

.box > .box-header{
    padding: 10px 20px 10px 20px;
    border: 1px solid #CDCDCD;
    font-weight: 400;
    font-size: 1.2em;
    display: block;
    /* for default font color for header box, you can set this with helper color (see stilear-helper.css) */
    /* for default background color for header box, you can set this with helper background color or helper gradient color (see stilear-helper.css) */
}

.box > .box-header > .header-control{
    float: right;
    margin-right: -5px;
}
.box > .box-header > .header-control a,
.box-tab > .box-header > .header-control a{
    cursor: pointer;
    margin-left: 5px;
    font-size: 14px;
}

.box > .box-body{
	display: block;
	border-top: none;
	position: relative;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 5px;
	padding-left: 20px;
}

.box > .box-body a{
	text-decoration: none;
}
.box > .box-body  form  .form-actions a{
	margin-left: -20px;
	margin-right: -20px;
	margin-bottom: -30px;
	text-decoration: none;
}

.box > .box-body .ace-editor{
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: -10px -10px -10px -20px;
    min-height: 480px;
}
/* end box default */

/** form element focus **/
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    border-color: rgba(0, 130, 153, 0.8);
    outline: 0;
    outline: thin dotted \9;
    /* IE6-9 */

    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 130, 153, 0.6);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 130, 153, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 130, 153, 0.6);
}
