@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;800;900&display=swap');

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   color: #fff;
}

body {
   height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   text-align: center;
   font-family: 'Montserrat', sans-serif;
   background-color: #4158d0;
   background-image: linear-gradient(
   43deg,
   #4158d0 0%,
   #c850c0 46%,
   #ffcc70 100%
   );
}

.container {
   display: flex;
   flex-direction: column;
   gap: 5px;
   background-color: rgba(204, 204, 204, 0.5);
   padding: 15px 25px;
   border-radius: 10px;
   user-select: none;
   cursor: pointer;
   font-weight: 500;
   transition: all 0.5s;
   margin-bottom: 25px;
}

.container:hover {
   box-shadow: 0px 26px 70px 1px rgba(0, 0, 0, 0.4);
   transform: scale(1.001);
}

.container h1 {
   font-weight: 500;
}

.copyright {
   position: absolute;
   bottom: 50px;
}

@media (max-width: 460px) {
   .container h1 {
      font-size: 22px;
   }
}

.site-header {
   background-color: #fff;
   color: black;
}

.site-header-top {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.logo {
   border-radius: 5px;
   padding-top: 12px;
   padding-right: 24px;
   padding-bottom: 12px;
   padding-left: 24px;
   font-size: 20px;
   text-decoration: none;
   background-color: #ff7500;
   color: #fff;
   transition: background-color 0.5 ease;
   margin-right: 15px;
}

.logo:hover {
   background-color: rgba(255, 117, 0, 0.7);
}

.site-header-right {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.site-header-nav ul {
   display: flex;
}

.site-header-nav a:hover {
   color: #ff7500;
}

.site-header-nav a {
   text-decoration: none;
   color: #000;
}

.site-header-nav li {
   list-style: none;
   margin-right: 15px;
}

.head-page {
   border-bottom: #ff7500 solid 4px;
}

.follow-link {
   padding-top: 12px;
   padding-right: 24px;
   padding-bottom: 12px;
   padding-left: 24px;
   text-decoration: none;
   background-color: #ff7500;
   color: #fff;
   border-radius: 5px;
}

.follow-link:hover {
   background-color: rgba(255, 117, 0, 0.7);
}

#signup-form {
   margin: 5px;
}

#username {
   border: 0;
   color: #000;
   padding: 4px;
   border-radius: 5px;
   margin-bottom: 8px;
}

.submit-btn {
   /* width: 380px; */
   background-color: #ff7500;
   border: 0;
   border-radius: 5px;
   padding: 5px 10px;
   transition: padding 0.5s ease;
}

.submit-btn:hover {
   background: #ffcc70;
   padding: 5px 80px;
   box-shadow: 0px 26px 70px 1px rgba(0, 0, 0, 0.8);
}

.message {
   color: #fff;
   margin-left: auto;
   margin-right: auto;
}

#password {
   border: 0;
   color: #000;
   padding: 4px;
   border-radius: 5px;
   margin-bottom: 10px;
}
