* {
  margin: 0px;
  box-sizing: border-box;
  font-family: "Source Sans Pro", sans-serif;
}

body {
  max-width: 100vw;
  overflow-x: hidden;
  height: 100vh;
}

.header-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #404040 !important;
}

.navbar-brand {
  font-size: 1.5em;
  color: white !important;
  font-weight: 400;
}

#register1{
  float: right;
  padding: 2px 20px;
  text-decoration: none;
  color: white;
  font-size: 1.2em;
  margin: auto 11px;
  font-weight: 300;
  width: 560px; /* Set width */
  background-color: #EC4700;
  border: 1px solid black;
  border-radius: 5px;
}

#logout {
  float: right;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  font-size: 1.2em;
  margin: auto 15px;
  font-weight: 400;
  width: 100px; /* Set width */
  background-color: #FFC60E;
  border: 1px solid white;
  border-radius: 5px;
}

#register:hover {
  background-color: #DFAF11;
  border-color: #DFAF11;
}

#register1:hover{
    background-color: #C03A00;
}

#logout {
  outline: none;
}

.content {
  margin: 20px 10px;
  font-size: 1.4em;
}

.content p {
  margin: 1px auto !important;
}

.content2 {
  padding: 50px;
  margin: 10px auto;
  font-size: 1.4em !important;
}

.content2 .heading {
  color: #F3C323;
  font-weight: bold;
}

.row {
  margin-top: 20px;
}

.leftComponent {
  width: 48vw;
  height: 450px;
  margin: 10px;
}

.leftComponent img {
  height: 120%;
  width: 70%;
}

.rightComponent {
  width: 45vw;
  height: 450px;
  margin: 10px;
}

.rightComponent h3 {
  text-align: center;
  font-size: 1.6em;
  margin-top: 25vh;
}

.rightComponent hr {
  width: 80%;
  border: 1px solid black;
  margin: auto;
}

.loginForm {
  margin: 10px;
  width: 100%;
  height: 50%;
}

.loginForm input {
  border-radius: 5px;
  outline: none;
}

input:focus,
textarea:focus {
  border: 1px solid #FFC60E !important;
  box-shadow: 0px 0px 5px #FFC60E !important;
}

.btn {
  width: 100%;
}

.footer {
  width: 100%;
  text-align: center;
  padding: 10px;
  bottom: 0;
  background: #404040 !important;
  bottom: 0px;
}

.footer > div {
  width: 100%;
}

@media (max-width: 572px) {
  body {
    width: 100vw;
    height: 100vh;
  }

  .navbar-brand {
    font-size: 1em;
  }

  #register,
  #home {
    font-size: 1em;
    margin: 1px;
  }

  .leftComponent img {
    height: 100%;
    width: 70%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .leftComponent,
  .rightComponent {
    width: 90vw;
    height: fit-content;
  }

  .rightComponent h3 {
    margin: 10px;
  }

  .content2 {
    padding: 10px;
  }
}

.btn.btn-success {
    background-color: #FFC60E;
    transition: background-color 0.3s ease;
}

.btn.btn-success:hover {
    background-color: #DFAF11; /* Darken the color slightly */
}

.btn.btn-success:hover, 
.btn.btn-success:focus {
    background-color: #DFAF11 !important; /* Ensure the hover effect overrides */
}

.btn btn-success3{
  color: white;
}

