/* CSS Document */

body {
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-size: 14px;
}

/*--- Text ---*/
.header {
	font-size: 18px;
	font-weight: bold;
	background-color: #FFC;
	padding: 10px;
}

.reminder {
	font-size: 18px;
	font-weight: bold;
	color: #F33;
	font-style: italic;
}

.special {
	font-size: 18px;
	font-weight: bold;
}

.regNo {
	font-size: 36px;
	font-weight: bold;
}


/*--- Image ---*/
.uploadImg {
		max-width: 150px;
		max-height: 150px;
		width: auto;
		height: auto;
}

/*--- Form --*/
input[type=text] {
	border: none;
	border-bottom: 1px solid #555;
}

input[type=text]:focus {
	outline-style: solid;
	outline-color: #BBF;
	outline-width: 2px;
}

input[type=text].digiBox {
	width: 20px;
	text-align: center;
	text-transform: uppercase;
	border: 1px solid #555;
	padding: 3px;
}

input[type=text].passcodeBox {
	width: 20px;
	text-align: center;
	text-transform: uppercase;
	border: 1px solid #555;
	padding: 3px;
}

select {
	border: none;
	border-bottom: 1px solid #555;
}

select:focus {
	outline-style: solid;
	outline-color: #BBF;
	outline-width: 2px;
}

.selector:hover {
	cursor: pointer;
	background-color: #BBF;	
}

button {
	cursor: pointer;
	border: 1px solid #555;
	border-radius: 5px;
}

.title {
	background-color: #AAA;
	font-weight: bold;
}

.separate {
	background-color: #EEE;
}

.subText {
	color: #555;
	font-style: italic;
}

.langButton {
	width: 30px;
	height: 30px;
	padding: 2px;
	border: 1px solid #555;
	border-radius: 50%;
}

/*--- Validation --*/
.error {
	color: #F00;
	border-color: #F00;
	background-color: #FDD;
}

/*--- Responsive ---*/
* {
	box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto;
}

.row::after {
	content: "";
	clear: both;
	display: table;
}

[class*="col-"] {
	float: left;
	padding: 10px;
}

/* mobile */
[class*="col-"] {
	width: 100%;
}

@media screen and (max-width: 600px) {
	.col-split { display: none; }
}

/* desktop & tablet */
@media only screen and (min-width: 600px) {
	.col-title { width: 25%; }
	.col-split { width: 5%; }
	.col-content { width: 70%; }
	.col-full { width: 100%; }
}

/* print out */
@media print {
	.col-title { width: 25%; }
	.col-split { width: 5%; }
	.col-content { width: 70%; }
	.col-full { width: 100%; }
}
