123 lines
2.9 KiB
CSS
123 lines
2.9 KiB
CSS
|
* {
|
||
|
all: unset;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
title {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: "Arial", sans-serif;
|
||
|
background: linear-gradient(135deg, #283e4a, #1c2e38);
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
height: 100%;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
body .form-container {
|
||
|
background-color: rgba(255, 255, 255, 0.92);
|
||
|
padding: 40px;
|
||
|
border-radius: 12px;
|
||
|
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
|
||
|
width: 100%;
|
||
|
max-width: 800px;
|
||
|
text-align: left;
|
||
|
margin: auto;
|
||
|
}
|
||
|
body .form-container h2 {
|
||
|
color: #4e4e4e;
|
||
|
font-size: 28px;
|
||
|
margin-bottom: 20px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
body .form-container form {
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
gap: 20px;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
body .form-container form .form-group {
|
||
|
flex: 1 1 calc(50% - 20px);
|
||
|
min-width: 250px;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
body .form-container form .form-group label {
|
||
|
display: block;
|
||
|
color: #4e4e4e;
|
||
|
font-size: 16px;
|
||
|
margin-bottom: 5px;
|
||
|
}
|
||
|
body .form-container form .form-group input[type=text],
|
||
|
body .form-container form .form-group input[type=password],
|
||
|
body .form-container form .form-group input[type=email],
|
||
|
body .form-container form .form-group input[type=date],
|
||
|
body .form-container form .form-group select {
|
||
|
width: 100%;
|
||
|
padding: 12px;
|
||
|
border: 1px solid rgba(220, 220, 220, 0.8);
|
||
|
border-radius: 6px;
|
||
|
background-color: rgba(245, 245, 245, 0.9);
|
||
|
font-size: 16px;
|
||
|
transition: border-color 0.3s, background-color 0.3s;
|
||
|
}
|
||
|
body .form-container form .form-group input[type=text]:focus,
|
||
|
body .form-container form .form-group input[type=password]:focus,
|
||
|
body .form-container form .form-group input[type=email]:focus,
|
||
|
body .form-container form .form-group input[type=date]:focus,
|
||
|
body .form-container form .form-group select:focus {
|
||
|
border-color: #007b8a;
|
||
|
outline: none;
|
||
|
}
|
||
|
body .form-container form .admin-access {
|
||
|
flex: 1 1 100%;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
body .form-container form .admin-access label {
|
||
|
display: block;
|
||
|
color: #4e4e4e;
|
||
|
font-size: 16px;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
body .form-container form .admin-access .checkbox-group {
|
||
|
display: flex;
|
||
|
justify-content: flex-start;
|
||
|
gap: 10px;
|
||
|
}
|
||
|
body .form-container form .role-dropdown {
|
||
|
flex: 1 1 calc(50% - 20px);
|
||
|
min-width: 250px;
|
||
|
padding: 0;
|
||
|
}
|
||
|
body .form-container form .submit-button {
|
||
|
flex: 1 1 100%;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
margin-top: 20px;
|
||
|
}
|
||
|
body .form-container form .submit-button button {
|
||
|
width: 30%;
|
||
|
text-align: center;
|
||
|
padding: 12px;
|
||
|
background-color: #007b8a;
|
||
|
color: #ffffff;
|
||
|
border: none;
|
||
|
border-radius: 6px;
|
||
|
font-size: 18px;
|
||
|
font-weight: bold;
|
||
|
cursor: pointer;
|
||
|
transition: background-color 0.3s, transform 0.3s;
|
||
|
box-shadow: 0 4px 10px rgba(0, 123, 138, 0.3);
|
||
|
}
|
||
|
body .form-container form .submit-button button:hover {
|
||
|
background-color: #006b7a;
|
||
|
}
|
||
|
body .form-container form .submit-button button:active {
|
||
|
transform: translateY(2px);
|
||
|
}
|
||
|
|
||
|
/*# sourceMappingURL=adduser.css.map */
|