body {
    background-color:lightcyan;
}

.header-main {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    background-color: lightcyan;
    margin-top: 15px;
    margin-bottom: 5px;
}

.header-main-logo {
    width: fit-content;
    height: 100%;
    padding-left: 40px;
    display: flex;
}

.header-main-logo img {
    height: 60px;
    align-self: center;
}

.header-main-nav {
    width: fit-content;
    height: 100%;
}

.header-main-nav ul {
    list-style: none;
    margin-left: 30px;
}

.header-main-nav li {
    display: inline;
    float: left;
    line-height: 60px;
    font-family: Arial, Helvetica, sans-serif;
}

.header-main-nav li a {
    padding: 0 10px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 60px;
}

.header-main-sm {
    width: 300px;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-main-sm img {
    border-radius: 50%;
    height: 80%;
    margin-left: 15px;
}

.header-main-username {
    line-height: 60px;
    margin-left: 40px;
}

.Container {
    display: flex;
    justify-content:center;
}

.leftBuff {
    width: 20%;
}

.rightBuff {
    width: 20%;
}

.content {
    width: 60%;
    height: 500px;
    border: 2px solid black;
    border-radius: 10px;
    padding: 40px;
    align-items: center;
    background-color: #ccc8c8bd;    
}

.content h3 {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}
footer {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    background-color: lightcyan;
    margin-top: 5px;
}

.suForm {
    height: 200px;
    width: 60%;
    margin: auto;
    margin-top: 15px;
}

.suForm a {
    font-family: Arial, Helvetica, sans-serif;
}

.suForm p {
    margin-bottom: 5px;
}
.suForm a:hover {
    color: #d00e07;
    text-decoration: underline;
}

.logo {
    width: 60%;
    margin: auto;
    display: flex;
    align-content: center;
    margin-bottom: 10px;
}

.logo img {
    height: 100px;
    margin: auto;
}

form input {
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid black;
    border-radius: 4px;
  }

  form input:focus {
    background-color: #B32025;
    color: white;
  }

  .cwid {
    background-image: url('../img/badgeicon1.png');
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding-left: 40px;
    font-family: Arial, Helvetica, sans-serif;

  }

  .password {
    background-image: url('../img/keyicon.png');
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding-left: 40px;
    font-family: Arial, Helvetica, sans-serif;

  }

  .submitBTN {
    background-color: #B32025;
    border: 2px solid white;
    border-radius: 5%;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    float: right;
  }

  .submitBTN:hover{
    background-color: white; 
    color: #B32025;
    border: 2px solid #B32025;
    ;
    font-family: Arial, Helvetica, sans-serif;

  }

  .form-success {
    color: green;
  }

  p.rand_error {
    color: red;
  }

  p.verrWarn {
    color: red; 
  }

  .verify_text {
    text-align: center;
  }