62 lines
961 B
CSS
62 lines
961 B
CSS
|
|
.error-message {
|
|
color: #ff0000;
|
|
font-size: 12px;
|
|
margin-top: 5px;
|
|
display: none;
|
|
}
|
|
|
|
.form__input.error {
|
|
border-color: #ff0000;
|
|
}
|
|
|
|
.form__group {
|
|
position: relative;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.page-messages {
|
|
position: fixed;
|
|
bottom: 20px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
z-index: 1000;
|
|
width: 90%;
|
|
max-width: 500px;
|
|
}
|
|
|
|
.message {
|
|
padding: 15px;
|
|
margin: 10px 0;
|
|
border-radius: 5px;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
display: none;
|
|
}
|
|
|
|
.message.error {
|
|
background-color: #ffebee;
|
|
color: #c62828;
|
|
border: 1px solid #ffcdd2;
|
|
}
|
|
|
|
.message.success {
|
|
background-color: #e8f5e9;
|
|
color: #453227;
|
|
border: 1px solid #c8e6c9;
|
|
}
|
|
|
|
.message.warning {
|
|
background-color: #fff3e0;
|
|
color: #ef6c00;
|
|
border: 1px solid #ffe0b2;
|
|
}
|
|
|
|
.privacy-error {
|
|
color: #ff0000;
|
|
font-size: 12px;
|
|
margin-top: 5px;
|
|
display: none;
|
|
text-align: center;
|
|
}
|