77 lines
1.2 KiB
CSS
77 lines
1.2 KiB
CSS
body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
margin: 0;
|
|
}
|
|
|
|
.topnav {
|
|
overflow: hidden;
|
|
background-color: #333;
|
|
}
|
|
|
|
.topnav a {
|
|
float: left;
|
|
color: #f2f2f2;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
text-decoration: none;
|
|
font-size: 17px;
|
|
}
|
|
|
|
.topnav a:hover {
|
|
background-color: #ddd;
|
|
color: black;
|
|
}
|
|
|
|
.topnav a.active {
|
|
background-color: #04aa6d;
|
|
color: white;
|
|
}
|
|
|
|
/* Full-width input fields */
|
|
input[type=text], input[type=password], input[type=email] {
|
|
width: 100%;
|
|
padding: 12px 20px;
|
|
margin: 8px 0;
|
|
display: inline-block;
|
|
border: 1px solid #ccc;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* Set a style for all buttons */
|
|
button {
|
|
background-color: #04AA6D;
|
|
padding: 14px 20px;
|
|
margin: 8px 0;
|
|
border: none;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
button:hover {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.form-container {
|
|
width: 800px;
|
|
padding: 16px;
|
|
margin: auto;
|
|
}
|
|
|
|
.details {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-top: 0.5rem;
|
|
}
|
|
|
|
#form-error {
|
|
display: none;
|
|
background-color: #FFCDD2;
|
|
color: #C62828;
|
|
border: 1px solid #C62828;
|
|
border-radius: 4px;
|
|
padding: 1rem 2rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|