/* Back arrow Image/Title code */

CSS
:root {
  --primary-color: #C3C3C3;
  --hover-color: #13aff0;
}

.go-back-box {
  align-items: center;
  position: absolute;
  margin-left: 25px;
  margin-top: -100px;
}

.back-arrow-grey, 
.back-arrow-blue {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  transition: opacity 0s;
  z-index: 1; /* Same z-index for both arrows */
}

.back-arrow-blue {
  opacity: 0;
  z-index: 2; /* Blue arrow appears on top on hover */
}

.go-back-box:hover .back-arrow-grey {
  opacity: 0;
  z-index: 0; /* Grey arrow moves behind on hover */
}

.go-back-box:hover .back-arrow-blue {
  opacity: 1;
}

.go-back-box:hover .go-back-title, 
.go-back-title:hover {
  color: var(--hover-color);
  text-decoration: none;
}

.go-back-title {
    font-size: 18px;
    color: #c3c3c3;
    display: block;
    margin-top: 70px; /* Adjusted margin to accommodate arrow size */
  }

.go-back-title:hover {
    color:#13AFF0;
}

.back-link {
    color:#C3C3C3
}

.back-link:hover {
    color:#13AFF0
}
  
  
  /* rest of page code */
  
  body {
    background-color: #000;
    font-family: Arial, sans-serif;
  }
  
  .container {
    text-align: center;
    justify-content: center;
  }
  
  .image-container {
    display: grid;
    grid-template-columns: repeat(3, 250px);
    gap: 150px;
    margin-top: 125px;
    margin-bottom: 60px;
    margin-left: 150px;
    justify-content: center;
  }
  
  .image {
    border-radius: 10px;
  }
  
  .title {
    color: #c3c3c3;
    font-size: 48px;
    text-decoration: underline;
    margin-bottom: 50px;
    margin-top: 100px;
  }
  
  .login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .login-form label {
    color: #c3c3c3;
    text-align: left;
    width: 300px;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .input-field {
    width: 300px;
    height: 20px;
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  .submit-btn {
    width: 150px;
    height: 40px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    align-self: center;
  }
  
  .submit-btn:hover {
    background-color: #3e8e41;
  }
  
  .footer {
    position: absolute;
    bottom: 10px;
    right: 20px;
  }
  
  .footer-text {
    font-size: 12px;
    color: #c3c3c3;
    text-align: right;
  }
  
  .footer-text a {
    text-decoration: underline;
    color: #c3c3c3;
  }
  
  .footer-text a:hover {
    text-decoration: none;
    color: #13AFF0
  }