This commit is contained in:
Polina 2024-06-01 09:22:48 +04:00
parent 5223078223
commit 5320299e2f

View File

@ -2,84 +2,7 @@
ViewData["Title"] = "Регистрация за сотрудника";
}
<style>
body {
background: linear-gradient(to bottom right, #a1c2a1, #558055);
color: #fff;
font-family: 'Arial', sans-serif;
}
.container {
max-width: 500px;
margin: 0 auto;
padding: 20px;
background-color: rgba(255, 255, 255, 0.8);
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.title {
text-align: center;
font-size: 28px;
color: #333; /* Изменили цвет главной надписи */
margin-bottom: 30px;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
font-size: 16px;
font-weight: bold;
color: #333;
margin-bottom: 5px;
}
.form-control {
width: 100%;
padding: 10px;
font-size: 16px;
border: none;
border-radius: 4px;
background-color: rgba(255, 255, 255, 0.8);
color: #333;
}
.btn {
display: inline-block;
padding: 10px 20px;
font-size: 18px;
font-weight: bold;
color: #fff;
background-color: #a1c2a1;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #558055;
}
.text-center {
text-align: center;
}
.enter-link {
display: block;
font-size: 14px;
color: #fff;
text-decoration: none;
margin-top: 10px;
}
.enter-link:hover {
color: #ccc;
}
</style>
<div class="container">
<h2 class="title">@ViewData["Title"]</h2>