/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:Montserrat;
    background-color: #f0f0f0;
}

.containers {
    margin-top: 80px;
    max-width: 500px;
    margin: 50px auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.signup-form {
    display: flex;
    flex-direction: column;
}

.module-form{
   margin-top: 50px;
   margin-bottom: 50px;

}

.module-banner{
    background-color: indianred;
    padding: 50px;
}

.module-heading{
    margin-top: 20px;
  font-size: 100px;
  text-align: center;
}

.module-paragraph{
   font-size: 25px;
   text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
    width: 100%;
    padding: 8px;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    margin-top: 5px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus{
    outline: none; /* Remove default focus outline */
    border-color: #333; /* Change border color on focus */
}

small {
    color: #777;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

button:hover {
    background-color: #45a049;
}
