@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f0f0; 
}

.container{
    width: 80%;
    margin: auto;
}
/* Scroll Bar */
.custom-scrollbar {
    overflow-y: scroll;
    width :100%;
  }
  /* /* To style the document scrollbar, remove `.custom-scrollbar` */
  .custom-scrollbar::-webkit-scrollbar {
    width: 8px;
  }
  .custom-scrollbar::-webkit-scrollbar-track {
    background : rgb(161, 161, 161);
    /* border-radius: 10px; */
  }
  .custom-scrollbar::-webkit-scrollbar-thumb {
    background : rgba(0,0,0,0.5);
    /* border-radius: 10px; */
    box-shadow:  0 0 6px rgba(0, 0, 0, 0.5);
  } 

/* Button */
.MyInput {
    display: flex;
    flex-direction: row;
    width: 60%;
    margin: auto;
}

.MyInput input {
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #000;
    padding: 13px;
    margin: 5px 0;
}

.credentials {
    display: flex;
    flex-direction: column;
    width: 60%;
    margin: auto;
}

.credentials input {
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #000;
    padding: 13px;
    margin: 5px 0;
}

input::placeholder {
    font-size: 1rem;
    font-weight: 100;
    font-family: monospace;
    color: #000;
} 

input[type="text"] {
    font-size: 1.3rem;
    font-family: monospace;
    color: #000;
}

input[type="password"] {
    font-size: 1.3rem;
    font-family: monospace;
    color: #000;
}

input[type="text"], input[type="password"], button[type="submit"] { 
    outline: none;
}

select {
	margin: 10px;
}

.btn {
    background: #bbd2df;
    font-size: 1.3rem;
    font-family: monospace;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease-out;
}

.btn:hover {
    background-color: #679BB7;
}

.captcha-div {
	display: flex;
	align-items: center;
}

.captcha-img {
	width: 120px;
	height: 38px;
}

.btn-01 {
    background: #3e8e41;
    font-size: 1rem;
    font-family: monospace;
    padding: 2px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease-out;
}

.btn-01:hover {
    background-color: #ddd;
}

/* .main-body div .btn {
	margin-right: 60%;
} */

.main-body h3 {
	text-align: center;	
}

.main-body p {
	 padding: 5px 5px 5px 5px;
}

.main-body button {
	 margin: 10px 10px;
}

.form-btn {
	 margin: 10px 20%;
}

.list-item {
    background-color: #ddd;
    border: none;
    color: black;
    padding: 8px 5px;
    text-align: center;
    font-size: 16px;
    margin: 4px 2px;
    transition: 0.5s;
  }
  
  .list-item:hover {
    background-color: #3e8e41;
    color: white;
    cursor: pointer;
  }


header{
    background-color: #679BB7; 
    padding: 15px;
    position: relative;
}

header .container {
    margin-bottom: 20px;
    display: flex;
}

header .title h1{
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 10px;
}

header .container img {
    /* background: rgba(0, 0, 0, 0.5); */
    margin: 10px;
    height: 80px;
    width: 70px;
}

#my-timer {
	color: #ffffff;
	text-align: center;
}

.ad {
    /* background: rgba(28, 189, 100, 0.95); */
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;    
    border: 1px solid #ccc;
    border-top-left-radius: 20px;
}

.ad-body {
    padding: 5px;
    color: #444444;
    display: flex;
    
    font-weight: 600;
}

.ad img {
    width: 30px; 
    padding-left: 3px;
}

.notice h2 {
	text-align: center;
	/*color: blue;*/
}

.notice p:hover {
	color: red;
}

.notice p {
	padding: 5px;
}

.wrapper-box {
    height: 70vh;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}

.box-1 {
    grid-column: 1/3;

    padding: 5px;
    background-color: #bbd2df;
	
	height: 70vh;
}

.box-2 {
    grid-column: 3/11;
}

.box-3 {
    grid-column: 11/13;

    padding: 5px;
    background-color: #bbd2df;
}

.burger {
    position: absolute;
    top: 20px;
    right: 10px;
    color: #4b4b4b;
    background: #679BB7;
    padding: 4px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.5s;
    display: none;
}

.list li {
	list-style: none;
    text-align: center;
    border: 1px solid #ccc;
}

.list li a {
	text-decoration: none;
	color: #000000;
}

.list li:hover a {
	color: #ffffff;
}

.list h4 {
	text-align: center;
}

.nav-head {
	margin-bottom: 15px;
}

.main {
    padding: 5px;
}

.main-body {
	padding: 5px;
}

ol {
	padding-left: 15px;
}

.main-body h1{
    font-weight: 400;
    font-size: 1rem;
}

.slogan {
	color: red;
	font-weight: 600;
	text-align: right;
}


footer {
    background: rgb(58,64,82);
    color: #cccccc;
    font-size: 0.7rem;
    font-weight: 300;
    text-align: center;
    padding: 25px;
    width: 100%;
}

.building {
	width: 100%;
	height: 60%;
	background-image: url("building6.jpeg");
	background-position: center;
	background-size: cover;
}

.attendance {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
/* 
footer {
    background: #f0f0f0;
    border-top: #ccc 1px solid;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
}

.footer-wrapper-branding {
    width: 350px;
    margin: auto;
    color: #444444;
}

.footer-wrapper-branding-anchor, .footer-wrapper-branding-address, .footer-wrapper-branding-phone, .footer-wrapper-branding-email {
    display: flex;
    padding: 5px;
    text-decoration: none;
}

.footer-wrapper-branding-anchor img, .footer-wrapper-branding-address i, .footer-wrapper-branding-phone i, .footer-wrapper-branding-email i {
    margin-right: 10px;
}

.brand-logo {
    width: 300px;
}

.brand-name {
    color: #000000;
    font-size: 2em;
}


.footer-bar {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    background-color: #3e8e41;
}

.footer-bar-body {
    padding: 10px;
    text-align: center;
    justify-content: center;
    display: flex;
}

.footer-bar p {
    font-size: 1rem;
}
.footer-bar img {
    margin: 0 3px 0 8px;
    width: 25px;
    height: 20px;
} */

table, th, td {
			border: 1px solid black;
			border-collapse: collapse;
			margin: 0px 10px;
		}
		th, td {
			padding: 3px;
			text-align: left;
		}

th, td {
  padding: 3px;
  text-align: left;
}

.help-block {
			padding: 0px 5px;
			color: red;
		}


.pdf {
    background: rgba(0,0,0,0.4);
    min-height: 350px;
    width: 98%;
	margin: auto;
}

.table-captcha-box {
    display: flex;
    border: none;
    margin: 0;
}

/* Media Queries */
@media(max-width: 1024px) {
    .wrapper-box {
        position: relative;
    }

    .box-1 {
        width: 300%;
        height: 100%;
        position: absolute;
        transform: translateX(-110%);
        transition: transform 0.5s ease-in;

        box-shadow: 5px 0px 5px 0px rgba(0,0,0,0.6);
    }

    .box-2 {
        grid-column: 1/13;
    }

    .box-3 {
        grid-row: 1/2;
        grid-column: 1/13;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }
	
	.pdf {
		background: rgba(0,0,0,0.4);
		min-height: 350px;
		width: 98%;
		margin: auto;
	}
	
    
}

@media(max-width: 768px) {

    header .container {
        width: 90%;
        margin-left:-15px;
        margin-bottom: 20px;
        display: flex;
    }
    
    header .title h1{
        font-size: 1.6rem;
    }
    
    header .container img {
        /* background: rgba(0, 0, 0, 0.5); */
        margin: 10px;
        /* keeping the logo size ratio same, divided by 1.2 */
        height: 66.6px; 
        width: 58.3px;
    }

    .ad-body img {
        width: 20px; 
    }

    .ad-body p {
        font-size: 0.8rem;
    }

    ::-webkit-scrollbar {
        display: none;
    }

    .wrapper-box {
        height: 70vh;
    }

    footer {
        padding: 20px 0 15vh 0;
    }
	
	.pdf {
		background: rgba(0,0,0,0.4);
		min-height: 350px;
		width: 98%;
		margin: auto;
	}

}

@media(max-width: 540px) {
    
    header .title h1{
        font-size: 1.4rem;
    }

    /* .footer-wrapper {
        padding: 0;
        margin: 0;
    }

    .footer-wrapper-branding {
        width: 280px;
        font-size: 0.8rem;
    }

    .brand-logo {
        width: 250px;
    } */
	
	.pdf {
		background: rgba(0,0,0,0.4);
		min-height: 350px;
		width: 98%;
		margin: auto;
	}
	
	/*.building {*/
 /*   	background-position: -25px 0;*/
 /*   	background-repeat:no-repeat;*/
 /*   }*/
}