/* Body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
}

/* Login and registration container styles */
.container {
    background-color: #ffffff;
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
}

/* Input field styles */
input[type="text"],
input[type="email"],
input[type="password"] {
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background-color: #f2f2f2;
    font-size: 16px;
}

/* Submit button styles */
input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #3e8e41;
}

/* Error message styles */
.error {
    color: red;
    margin: 10px 0;
}

/* Label styles */
label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: bold;
}

/* Icon styles */
label i {
    margin-right: 5px;
}