Spaces:
Sleeping
Sleeping
body { | |
font-family: Arial, sans-serif; | |
background-color: #f4f4f4; | |
margin: 0; | |
padding: 0; | |
} | |
.container { | |
max-width: 500px; | |
margin: 50px auto; | |
padding: 20px; | |
background-color: #fff; | |
border-radius: 5px; | |
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); | |
} | |
h2 { | |
text-align: center; | |
margin-bottom: 20px; | |
color: #0c7178; | |
} | |
.form-group { | |
margin-bottom: 20px; | |
} | |
label { | |
display: block; | |
font-weight: bold; | |
margin-bottom: 5px; | |
} | |
input[type="text"], | |
input[type="date"], | |
input[type="password"] { | |
width: 100%; | |
padding: 10px; | |
border: 1px solid #ccc; | |
border-radius: 4px; | |
} | |
.form-check { | |
margin-top: 10px; | |
} | |
.btn { | |
width: 100%; | |
padding: 10px; | |
background-color: #0c7178; | |
border: none; | |
color: #fff; | |
font-weight: bold; | |
cursor: pointer; | |
transition: background-color 0.3s ease; | |
} | |
.btn:hover { | |
background-color: #0a5d62; | |
} | |
.alert { | |
margin-top: 20px; | |
padding: 10px; | |
border-radius: 4px; | |
} | |
.alert-danger { | |
background-color: #f8d7da; | |
color: #721c24; | |
border: 1px solid #f5c6cb; | |
} | |
.alert-success { | |
background-color: #d4edda; | |
color: #155724; | |
border: 1px solid #c3e6cb; | |
} | |