﻿/*=========================================================
    Exam-Gate Enterprise Version 1.0.0
    Shared CSS
=========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{

    background:#f5fff5;
    color:#222;
    padding:20px;

}

.container{

    width:95%;
    max-width:1200px;
    margin:auto;

}

.header{

    background:#0b8a0b;
    color:white;
    padding:20px;
    text-align:center;
    border-radius:8px;
    margin-bottom:20px;

}

.header h1{

    font-size:32px;

}

.header p{

    font-size:18px;
    margin-top:8px;

}


span7 {
  font-size: 26px;
  font-weight: bold;
  color: #191970 ;
  line-height: 35px;
 
}


span8 {
  font-size: 22px;
  font-weight: bold;
  color: green;
  line-height: 35px;
 
}


.navi a {
     text-decoration: none;
     font-size: 20px;
     font-weight: bold;
     color: brown;
}

.navi a:hover {
     color: green ;
}

.navi a.active  {
	color: green;
	background: none;
}



.section{

    background:white;
    border:1px solid #dddddd;
    border-radius:10px;
    padding:20px;
    margin-bottom:20px;

}

.section h2{

    color:#0b8a0b;
    margin-bottom:15px;

}

label{

    display:block;
    margin-top:12px;
    margin-bottom:5px;
    font-weight:bold;

}

input[type=text],
input[type=password],
input[type=date],
input[type=time],
input[type=number],
select,
textarea{

    width:100%;
    padding:12px;
    border:1px solid #cccccc;
    border-radius:5px;
    font-size:16px;

}

textarea{

    resize:vertical;

}

.question{

    background:#ffffff;
    border-left:5px solid green;
    padding:20px;
    margin-top:20px;
    border-radius:10px;

}

.option{

    margin-top:10px;

}

button{

    background:green;
    color:white;
    border:none;
    padding:12px 25px;
    margin-top:15px;
    cursor:pointer;
    border-radius:6px;
    font-size:16px;
    transition:.3s;

}

button:hover{

    background:#0a5f0a;

}

.btn-red{

    background:#c62828;

}

.btn-blue{

    background:#1565c0;

}

.btn-orange{

    background:#ef6c00;

}

.success{

    color:green;
    font-size:24px;
    font-weight:bold;
    text-align:center;
    margin-top:20px;

}

.error{

    color:red;
    font-size:24px;
    font-weight:bold;
    text-align:center;
    margin-top:20px;

}

.notice{

    background:#ffffcc;
    border:1px solid #cccc99;
    padding:15px;
    border-radius:8px;
    margin-top:15px;

}

table{

    width:100%;
    border-collapse:collapse;
    margin-top:15px;

}

table th{

    background:green;
    color:white;
    padding:12px;

}

table td{

    border:1px solid #cccccc;
    padding:12px;

}

img{

    max-width:100%;

}

/*=============================================
    Countdown Timer
=============================================*/

.countdown-title{

    text-align:center;
    font-size:24px;
    font-weight:bold;
    margin-top:20px;
    margin-bottom:10px;

}

.countdown{

    background:#ffffff;
    text-align:center;
    font-size:30px;
    font-weight:bold;
    padding:10px;
    color:green;
    border-color:#A52A2A;
    border-style:solid;
    border-width:7px;
    border-radius:30px;
    width:40%;
    max-width:200px;
    margin:auto;

}

/*==========================================
Responsive
==========================================*/

@media(max-width:992px){

.header h1{

font-size:28px;

}

}

@media(max-width:768px){

.container{

width:100%;

}

.header h1{

font-size:24px;

}

button{

width:100%;

}

.countdown{

width:80%;

}

}

@media(max-width:480px){

.header h1{

font-size:20px;

}

.section{

padding:15px;

}

.countdown{

width:100%;
font-size:24px;

}

}