   /* General Styles */
   body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    
}

.container {
    width: 400px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

h2 {
    text-align: center;
}

form {
    display: none;
}

form.active {
    display: block;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="email"], input[type="password"], input[type="text"] {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.toggle-btn {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    text-align: center;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #28A745;
    color: white;
    border: none;
    cursor: pointer;
}

.toggle-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #007BFF;
    cursor: pointer;
}
@media only  screen and  (max-width:600px) {
    .container {
        border: 0;
        border-radius: 6px;
        width: 70%;
    }
}