﻿html, body {
  border: 0;
  padding: 0;
  margin: 0;
  height: 100%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

/* Define background colors for each day */
body.monday {
    background-color: #50514f;
}

body.tuesday {
    background-color: #f25f5c; 
}

body.wednesday {
    background-color: #ffe066; 
}

body.thursday {
    background-color: #247ba0; /* Light Green */
}

body.friday {
    background-color: #70c1b3; /* Light Cyan */
}

body.saturday {
    background-color: #a2292f; /* Light Blue */
}

body.sunday {
    background-color: #7a1f23; /* Light Pink */
}

/* General form styles */
form {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* Form title */
form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

/* Form labels */
form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

/* Form inputs */
form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="tel"],
form textarea,
form select {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
}

form input[type="checkbox"] {
    margin-right: 10px;
}

/* Form textarea */
form textarea {
    height: 100px;
    resize: vertical;
}

/* Form buttons */
form button[type="submit"],
form button[type="reset"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
}

form button[type="submit"]:hover,
form button[type="reset"]:hover {
    background-color: #0056b3;
}

/* Form reset button */
form button[type="reset"] {
    background-color: #6c757d;
}

form button[type="reset"]:hover {
    background-color: #5a6268;
}
