html * { font-family:Lato,Arial;color:#47474F}
body {background:#F4F4F4;background-image:url('images/back.jpg')}
a:hover {text-decoration:none}

h1 {font-size:22pt;}
h2 {font-size:18pt}
h3 {font-size:18pt}
h4 {font-size:16pt}
h5 {font-size:14pt}

.mycontainer {max-width:1080px;min-height:640px;margin-top:35px}

header {background:#3E71BE;box-shadow: 0 10px 10px -10px rgba(0,0,0,.3);padding:5px}
.header-wrapper h1 {color:#FFFFFF;font-size:26pt;text-shadow:2px solid #000000}
.header-wrapper h3 {font-size:14pt;color:#FFFFFF}
.header-wrapper h5 {font-size:10pt}
.header-wrapper p {font-weight:bold;color:#FAFAFA}

.main-form {max-width:350px;margin:0 auto;}

.divider {margin:10px;border-bottom:2px dotted #FFFFFF}

.myform {max-width:850px;margin:0 auto;margin-top:25px;padding:15px; background-color:rgba(255, 255, 255, 0.9) ; border:1px solid #FFFFFF; box-shadow:0px 0px 10px rgba(100,100,100,0.55);}
.myform h1 {text-align:center;font-size:14pt;padding:5px;color:#50623A;margin-top:15px;text-transform:uppercase;background:#E1E1E1;border-radius:5px}
.myform label {color:#255C93;font-size:12pt;padding-top:5px;}
label sup {color:red;font-weight:bold}

/* border-animations.css */
.border-animate {
  position: relative;
  padding: 12px 24px;
  color: #fff;
  background: #1a73e8;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  transition: color 0.3s, background 0.3s;
}

.border-animate::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: linear-gradient(60deg, #ff0080, #7928ca, #2af598, #009efd);
  background-size: 300% 300%;
  z-index: -1;
  filter: blur(8px);
  opacity: 0;
  animation: border-glow 4s ease infinite;
  border-radius: 4px;
}

.border-animate:hover::before {
  opacity: 1;
}

@keyframes border-glow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}




footer {background:#EDEDED;padding:15px;}
.footer-text {color:#808080;text-align:center;line-height:200%}

