body {
font-family: 'Roboto', sans-serif;
background-color: #622569;
color: #d6d4e0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
max-width: 950px;
width: 100%;
padding: 40px;
background-color: #b8a9c9;
border-radius: 8px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 10px 15px rgba(0, 0, 0, 0.3);
text-align: center;
color: #4B0082; /* Dark purple color for text */
}
.title {
font-size: 48px;
color: #5b9aa0;
margin-bottom: 10px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
font-weight: 700;
}
.subtitle {
font-size: 20px;
color: #03396c;
font-weight: 600;
margin-bottom: 20px;
}
input[type="text"],
input[type="password"],
input[type="email"] {
width: 80%;
padding: 10px;
margin: 10px 0;
border: 1px solid #5b9aa0;
border-radius: 5px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
background-color: #d6d4e0;
color: #03396c;
font-size: 16px;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
border-color: #03396c;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
outline: none;
}
button {
padding: 10px 20px;
font-size: 16px;
color: #d6d4e0;
background-color: #5b9aa0;
border: none;
border-radius: 5px;
cursor: pointer;
margin: 10px 0;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
button:hover {
background-color: #03396c;
}
a {
color: #5b9aa0;
text-decoration: none;
}
a:hover {
color: #03396c;
text-decoration: underline;
}
/* Table styles for vault */
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
table th, table td {
padding: 10px;
border: 1px solid #5b9aa0;
text-align: left;
background-color: #d6d4e0;
color: #03396c;
}
table th {
background-color: #5b9aa0;
color: #d6d4e0;
}
table tr:nth-child(even) {
background-color: #b8a9c9;
}
/* Menu button styles */
.menu {
display: flex;
justify-content: center;
margin-top: 20px;
}
.menu a {
text-decoration: none;
color: #fff;
background-color: #5b9aa0;
padding: 10px 20px;
margin: 5px;
border-radius: 5px;
transition: all 0.3s ease;
font-size: 16px;
}
.menu a:hover {
background-color: #d6d4e0;
color: #622569;
transform: scale(1.1);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.menu a:active {
transform: scale(1);
box-shadow: none;
}
/* Navigation bar styles */
.navbar {
overflow: hidden;
background-color: #5b9aa0;
display: flex;
justify-content: center;
font-family: Arial, sans-serif;
}
.navbar a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 20px;
text-decoration: none;
transition: background-color 0.3s;
}
.navbar a:hover {
background-color: #d6d4e0;
color: #622569;
}
.dropdown {
float: left;
overflow: hidden;
}
.dropdown .dropbtn {
font-size: 16px;
border: none;
outline: none;
color: white;
padding: 14px 20px;
background-color: inherit;
font-family: inherit;
margin: 0;
transition: background-color 0.3s;
}
.navbar a:hover, .dropdown:hover .dropbtn {
background-color: #d6d4e0;
color: #622569;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #5b9aa0;
min-width: 160px;
box-shadow: 0 8px 16px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
float: none;
color: white;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
transition: background-color 0.3s;
}
.dropdown-content a:hover {
background-color: #d6d4e0;
color: #622569;
}
.dropdown:hover .dropdown-content {
display: block;
}
/* Form container */
.form-container {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
form {
display: flex;
flex-direction: column;
width: 100%;
max-width: 500px;
}
.form-group {
display: flex;
align-items: center;
margin-bottom: 15px;
}
form label {
width: 150px;
font-weight: bold;
color: #4B0082; /* Dark purple color */
}
form input {
flex: 1;
padding: 10px;
margin-left: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
form button {
margin-top: 20px;
padding: 10px;
background-color: #5b9aa0;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
form button:hover {
background-color: #d6d4e0;
color: #622569;
}
/* Footer styles */
.footer {
background-color: #8B6F91; /* New color for better contrast */
color: #4B0082; /* Dark purple text */
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
left: 0;
}
.footer p {
margin: 5px 0;
}