
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.auth-container {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    width: 150%;
    max-width: 450px;
    text-align: center;
}
.banner img {
  max-width: 100px; /* Set a maximum width for the logo */
  height: auto;      /* Maintain the image's aspect ratio */
}


/* Tabs */
.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

.tab-buttons button {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 20px;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.tab-buttons button.active {
    border-color: #f38600;
    color: #f38600;
}

/* Forms */
form {
    display: none;
    flex-direction: column;
}

form.active {
    display: flex;
}

form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s;
}

form input:focus {
    border-color: #f38600;
    outline: none;
}

form button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: linear-gradient(135deg, #f38600);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background: linear-gradient(135deg, #f38600);
    transform: scale(1.05);
}

/* Forgot password link */
.forgot-password {
    margin-top: 15px;
    font-size: 0.9rem;
}

.forgot-password a {
    color: #f38600;
    text-decoration: none;
    transition: 0.3s;
}

.forgot-password a:hover {
    color: #f38600;
}






/* Responsive */
@media (max-width: 480px) {
    .auth-container {
        padding: 30px 20px;
    }

    .tab-buttons button {
        padding: 8px 15px;
    }
}

