Форма для договора
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
body {
font-family: 'Roboto', sans-serif;
background: #f1f3f4;
margin: 0;
display: flex;
justify-content: center;
}
.form-container {
background: #fff;
padding: 40px;
margin: 50px 10px;
border-radius: 12px;
max-width: 650px;
width: 100%;
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
h1 {
text-align: center;
margin-bottom: 5px;
font-weight: 500;
color: #202124;
}
p {
text-align: center;
margin-bottom: 30px;
color: #5f6368;
}
.field {
position: relative;
margin-bottom: 20px;
}
input, select {
width: 100%;
padding: 16px 12px;
border: 1px solid #dadce0;
border-radius: 8px;
font-size: 16px;
transition: all 0.2s ease;
background: #fff;
}
input:focus, select:focus {
border-color: #1a73e8;
box-shadow: 0 0 0 3px rgba(26,115,232,0.15);
outline: none;
}
label {
position: absolute;
left: 14px;
top: 50%;
transform: translateY(-50%);
color: #5f6368;
pointer-events: none;
transition: 0.2s;
}
input:focus + label,
input:not(:placeholder-shown) + label {
top: -10px;
font-size: 12px;
color: #1a73e8;
background: #fff;
padding: 0 4px;
}
button {
width: 100%;
padding: 16px;
border: none;
border-radius: 8px;
background: #1a73e8;
color: #fff;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
}
button:hover {
background: #1666c5;
}
.status {
margin-top: 12px;
font-size: 14px;
text-align: center;
color: #5f6368;
}
select option[disabled] {
color: #999;
}