body {
    background-color: #ffffff; /* background colour */
}

.container {
    border: 3px solid #3b3b3b; /* border colour */
    padding: 20px;
    width: 420px;
    margin: 50px auto;
    background-color: #ecf7fc; /* background colour container */
}

label {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 11pt;
    color: #3b3b3b; /* change text colour */
    display: block;
    margin-bottom: 5px;
}

/* Apply the same style to all input fields */
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="date"] {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 11pt;
    color: #3b3b3b; /* text input colour */
    display: block;
    padding: 10px; /* Adjusted padding for uniform size */
    margin-bottom: 20px;
    width: 100%; /* Ensure consistent width */
    box-sizing: border-box;
    background-color: #fbfbfb; /* background colour of input boxes */
    border: 2px solid #bddef4; /* input boxes border colour */
    border-radius: 5px; /* Added for consistent look */
}

button {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 11pt;
    color: #3b3b3b; /* Change create account colour */
    padding: 10px 20px;
    margin: 10px auto;
    width: calc(80% - 10px);
    background-color: #e0f2f6; /* inside button colour */
    border: 5px solid #bddef4; /* button border colour */
    cursor: pointer;
    border-radius: 30px;
    display: block;
}

button:hover {
    background-color: #4c9eeb; /* hover colour */
    color: #ffffff; /* hover colour text */
}

