header{
    margin-top: -100px;
}
/* Auth Section Styling */
.auth-section {
    padding: 50px 20px;
    margin-top: 100px;
}
.auth-container {
    max-width: 400px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 40px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.auth-container h1 {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
    position: relative;
    margin-bottom: 20px; /* Space between form groups */
    width: 100%; /* Full width by default */
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #ff3333;
    outline: none;
}

#toggleLoginPassword {
  position: absolute;
  right: 10px; /* Position inside input on the right */
  top: 50%; /* Vertically center */
  transform: translateY(-50%); /* Adjust for exact centering */
  font-size: 18px; /* Size of the eye icon */
  cursor: pointer;
  transition: color 0.3s ease;
}






.auth-btn {
    background: linear-gradient(90deg, #ff3333, #e60000);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3);
}

.auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 51, 51, 0.5);
}

.auth-link {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}

.auth-link a {
    color: #ff3333;
    text-decoration: none;
    font-weight: bold;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* Animation for Fade-In Effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .auth-container {
        padding: 20px;
    }

    .auth-container h1 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 14px;
    }
}

.fp{
    width: 100%;
    margin-top: -10px;
    font-size: 12px;
    opacity: 0.7;
    color: #000;
    text-decoration: none;
    justify-content: start;
}