/* common nav styles */
.navigation-wrapper {
    height: 10px;
    background: linear-gradient(
    135deg,
    rgba(210, 207, 212, 1),
	rgba(204, 216, 225, 1),
	rgba(102, 138, 167, 1),
	rgba(36, 80, 106, 1),
	rgba(30, 45, 79, 1),
	rgba(1, 4, 37, 1)
    );
    background-size: 300% 300%;
    animation: gradientMove 12s ease infinite;
    color: #cbcbcb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    position: sticky;
}
                                                           /* center column */
.navigation-wrapper > .center-column > .webpages {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 42px;
    width: 500px;
}
/* .links-wrapper */
.navigation-wrapper > .center-column > .webpages > .links-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 /* .nav-link */
.navigation-wrapper > .center-column > .webpages > .links-wrapper > .nav-link {
    width: 95px;
    align-items: center;
}
.navigation-wrapper > .center-column > .webpages > .links-wrapper > .nav-link a {
    font-family: sans-serif;
    color: rgba(135, 122, 133, 1);
    text-decoration: none;
    transition: 0.5s;
}
.navigation-wrapper > .center-column > .webpages > .links-wrapper > .nav-link a:hover {
    color: #A7C8CD;
    letter-spacing: 2px;
}
.navigation-wrapper > .logo img {
    width: 80px;
}
@keyframes gradientMove {
  0% { background-position: 0% 25%; }
  25% { background-position: 50% 0%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 100%; }
  100% { background-position: 0% 50%; }
}
.heading-wrapper {
    color: rgba(135, 122, 133, 1);
    background-color: rgba(36, 80, 106, 1);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 400px;
    padding: 10px;
    text-align: center;
    margin-left: 480px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.signin-section {
    background: rgba(204, 216, 225, 1);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.signin-section h2 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}
#signInForm > .form-group {
    margin-bottom: 15px;
}
#signInForm > .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: bold;
}
#signInForm > .form-group input[type="name"],
#signInForm > .form-group input[type="text"],
#signInForm > .form-group input[type="email"],
#signInForm > .form-group input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s;
}
#signInForm > .form-group input[type="name"]:focus,
#signInForm > .form-group input[type="text"]:focus,
#signInForm > .form-group input[type="email"]:focus,
#signInForm > .form-group input[type="password"]:focus {
    outline: none;
    border-color: rgb(83, 195, 247);
}
#signInForm > .signin-button {
    width: 100%;
    padding: 12px;
    background: rgb(83, 195, 247);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
#signInForm > .signin-button:hover {
    background: rgb(18, 175, 248);
}
.footer {
    background: linear-gradient(
    135deg,
    rgba(102, 138, 167, 1),
    rgba(36, 80, 106, 1),
    rgba(30, 45, 79, 1),
    rgba(1, 4, 37, 1)
    );
    animation: gradientMove 12s ease infinite;
    background-size: 300% 300%;
    position: relative;
    font-family: "Ubuntu Condensed", sans-serif;
    width: 100%;
    box-sizing: border-box;
    height: 440px ;
    margin-top: -40px;
    padding:40px 32px;
}
.footer > * {
    margin: 10px 0;
}
.footer-top {
    width: 100%;
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.6fr 1fr;
    gap:30px;
    padding-bottom:32px;
    border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand p {
    margin-top: 15px;
    margin-bottom: 15px;
}
.footer-brand img {
    width:140px;
    margin-bottom:18px;
    margin-left: 110px;
}
.footer-brand p {
    width:420px;
    line-height:1.75;
    color: rgba(135, 122, 133, 1);
}
.footer-links {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-top: 15px;
}
.footer-column h3 {
    margin-bottom:14px;
    color: rgba(210, 207, 212, 1);
    font-size:1.05rem;
}
.footer-column a, .footer-column p {
    display:block;
    color: rgba(135, 122, 133, 1);
    text-decoration:none;
    margin-bottom:10px;
    font-size:.95rem;
    transition: 0.5s;
}
.footer-column a:hover {
    color: #A7C8CD;
    letter-spacing: 2px;
}
.footer-bottom {
    width: 100%;
    max-width:1180px;
    margin-top: 17px;
    margin-left: 50px;
    padding-top:20px;
    text-align:center;
    color:#94a3b8;
    font-size:.95rem;
}
