/*buttons*/

.button {
  background-color: #04AA6D; /* Green */
  border: none;
  color: white;
  padding: 6px 8px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
  cursor: pointer;
}

.btn-green {
  background-color: white;
  color: black;
  border: 2px solid #04AA6D;
}

.btn-blue {
  background-color: white;
  color: black;
  border: 2px solid #008CBA;
}

.btn-red {
  background-color: white;
  color: black;
  border: 2px solid #f44336;
}

.btn-gray {
  background-color: white;
  color: black;
  border: 2px solid #e7e7e7;
}

.btn-black {
  background-color: white;
  color: black;
  border: 2px solid #555555;
}

.button:hover {
  background-color: #Ffff00; /* yellow background on hover */
  text-decoration: none;
}

/*forms*/

input[type=text], [type=email],select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=submit] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

div.form {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

/*miscell*/

.msg-alert {
  background-color: yellow;
  color: black;
  padding: 6px 8px;
  border-radius: 3px;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
}


/*video*/

.video-container {
    width: 1080;
    height: auto;
    position: relative;
    padding: 10px;
}
.video-js {
    width: 80% !important;
    height: 80% !important;
}

.video-html5 {
    width: 80% !important;
    height: 80% !important;
}

.video-label {
    position: absolute;
    top: -45px;
    left: 0;
    background-color: rgb(255, 0, 0);
    color: white;
    padding: 5px 10px;
    font-size: 20px;
}

/*miscell*/

.screenshot {
  border: 2px solid #DDDDDD;
  padding: 4px;
}
