
/* 
==============
 Learn CSS 
==============

Color:
  DarkOrange, #000072

*/

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* Style the header */
.header {
  padding: 0px 0px 0px 0px;
  text-align: left;
  background: #000072;
  color: white;
}

/* Header Text */
.top-left {
  position: absolute;
  top: 100px;
  left: 36px;
}


/* Style the footer */
.footer {
  padding: 30px 30px 30px 10px;
  text-align: right;
  background-color: #000072;
  color: white;
}

/* Style the top navigation bar */
.navbar {
    overflow: hidden;
    background-color: #00008B; /* Tosca Color Bar */
}

/* Style the navigation bar links */
.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

/* Right-aligned link */
.navbar a.right {
    float: right;
}

/* Change color on hover */
.navbar a:hover {
    background-color: Orange; /* Orange Color*/
    color: black;
}


/*
===============
 ALERT Message
===============
*/
.fixed {
  position: fixed;
  top: 0;
  right: 0;

  border: 0px solid red;
  border-left: 6px solid red;
  
  background-color: MintCream;
  max-width: 300px;
  margin: auto;
  padding: 20px;
  
  font-size: 20px;
}

.alert {
  padding: 20px;
  background-color: #f44336;
  color: white;
  opacity: 1;
  transition: opacity 0.6s;
  margin-bottom: 15px;
}

.alert.success {background-color: #4CAF50;}
.alert.info {background-color: #2196F3;}
.alert.warning {background-color: #ff9800;}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}

/*
===============
 3-Column
===============
*/

/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 0px;
}

/* Left and right column */
.column.left {
  width: 25%;
}

/* Left and right column */
.column.right {
  width: 25%;
  padding: 20px;
}

/* Middle column */
.column.middle {
  width: 50%;
  padding: 30px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .column.left, .column.middle, .column.right {
    width: 100%;
  }
}

/* 
===============
 LIST
===============
*/
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  height: auto;
  width: 100%;
  background-color: #EEE;
}

li a {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  color: Black;
}

li a:hover {
  background-color: Orange;
  color: white;
}

ul.list {
  list-style-type: disc;
  margin: 0;
  padding: 0;
  height: auto;
  width: 100%;
  background-color: #FFF;
}


/*
===============
 IMAGE
===============
*/
img {
  left: 0px;
  top: 0px;
}

img.abs {
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: -1;
}

img.floatleft {
  float: left;
}
img.floatright {
  float: right;
}

/*
===============
 TABLE
===============
*/
table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  text-align: left;
  padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2}

th {
  background-color: Orange;
  color: white;
}

/*
===============
 REGISTER
===============
*/

/* Add padding to containers */
.container {
  padding: 16px;
  background-color: white;
}

/* Full-width input fields */
input[type=text], input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  display: inline-block;
  border: none;
  background: #f1f1f1;
}

input[type=text]:focus, input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

/* Full-width textarea fields */
textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  display: inline-block;
  border: none;
  background: #f1f1f1;
}

input[type=file]{
  padding: 5px 5px;
}

/* Overwrite default styles of hr */
hr {
  border: 1px solid #000072;
  margin-bottom: 25px;
}

/* Set a style for the submit button */
.button {
  background-color: DarkOrange;
  color: black;
  padding: 16px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
  font-size: 14px;
}

.button:hover {
  opacity: 0.7;
}

.btn-group button {
  background-color: DarkOrange;
  color: black;
  padding: 16px 20px;
  margin: 2px 0px 0px 0px;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
  font-size: 14px;
  float: left; /* Float the buttons side by side */
}

/* Clear floats (clearfix hack) */
.btn-group:after {
  content: "";
  clear: both;
  display: table;
}

.btn-group button:not(:last-child) {
  border-right: none; /* Prevent double borders */
}

/* Add a background color on hover */
.btn-group button:hover {
  background-color: #000072;
  color: black;
}

/* Add a blue text color to links */
a {
  color: dodgerblue;
}

/* Set a grey background color and center the text of the "sign in" section */
.signin {
  background-color: #f1f1f1;
  text-align: center;
}

/* Text Link */
a.text:link {color:Black; text-decoration:none;}
a.text:visited {color:Black; text-decoration:none;}
a.text:hover {color:Orange; text-decoration:none;}

/* Warning Message */

