body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #3f51b5, #9c27b0);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
   
}
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;           /* Adjust size as needed */
  height: 400px;          /* Adjust size as needed */
  transform: translate(-50%, -50%);
  background: url('logo.jpg') no-repeat center center;
  background-size: contain;
  opacity: 0.08;          /* Adjust transparency */
  pointer-events: none;   /* Allows clicks through the watermark */
  z-index: 0;
}
.form-container {
    background: rgb(151, 98, 197);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    width: 300px;
    text-align: center;
}
.form-container1 {
   background: rgb(151, 98, 197);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    width: 300px;
    text-align: center;
    margin-top: auto;
    position: absolute;
    top: 84%;
    left: 50%;
    transform: translate(-50%, -50%); /* Added spacing below .form-container */
}
.form-container h2 {
    margin-bottom: 20px;
    color: #333;
}

.form-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-container button {
    width: 100%;
    padding: 10px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-container button:hover {
    background: #45a049;
}
.form-container a {
    display: block;
    margin-top: 15px;
    color: #007BFF;
    text-decoration: none;
}

.form-container a:hover {
    text-decoration: underline;
}

.form-container1 form {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.social-icons a {
    margin: 0 10px;
    color: #333;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #4CAF50;
}

.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #d946ef;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.back-button:hover {
    background: #a61cb5;
}

    .container:hover {
        transform: scale(1.01);
    }