80 lines
No EOL
1.2 KiB
CSS
80 lines
No EOL
1.2 KiB
CSS
/* General Styles */
|
|
body {
|
|
font-family: "Arial", sans-serif;
|
|
background: #f0f4ff;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 300px;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Container */
|
|
.container {
|
|
background: white;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
padding: 20px;
|
|
margin: 20px;
|
|
}
|
|
|
|
/* Heading */
|
|
h2 {
|
|
color: #0078D4;
|
|
font-size: 18px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
/* Inputs */
|
|
input {
|
|
width: 90%;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
border: 2px solid #0078D4;
|
|
border-radius: 6px;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
outline: none;
|
|
}
|
|
|
|
input:focus {
|
|
border-color: #005bb5;
|
|
}
|
|
|
|
/* Buttons */
|
|
button {
|
|
width: 95%;
|
|
padding: 10px;
|
|
border: none;
|
|
background: #0078D4;
|
|
color: white;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
button:hover {
|
|
background: #005bb5;
|
|
}
|
|
|
|
/* Button Group */
|
|
.button-group {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 5px;
|
|
}
|
|
|
|
.button-group button {
|
|
flex: 1;
|
|
}
|
|
|
|
/* Logout Button */
|
|
.logout {
|
|
background: #D9534F;
|
|
}
|
|
|
|
.logout:hover {
|
|
background: #c9302c;
|
|
}
|
|
|