body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(45deg, #ff6f61, #d500f9);
    color: #fff;
}
p{
   color: #333;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 600px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.form-container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.form-container h2 {
    margin-top: 0;
    color: #333;
}

.form-container form {
    display: flex;
    flex-direction: column;
}

.form-container input {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-container button {
    padding: 10px;
    background: #ff6f61;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.form-container button:hover {
    background: #e55b4f;
}

.form-container a {
    color: #ff6f61;
    text-decoration: none;
}

.form-container a:hover {
    text-decoration: underline;
}

#login-container {
    display: block;
}

#signup-container {
    display: none;
}
