40 lines
625 B
CSS
40 lines
625 B
CSS
.identifierForm {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.identifierInput {
|
|
padding: 0.5rem;
|
|
border: 1px solid #ccc;
|
|
border-radius: 0.5rem;
|
|
width: 100%;
|
|
max-width: 300px;
|
|
}
|
|
|
|
.identifierLabel {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.submitButton {
|
|
background-color: #4caf50;
|
|
color: white;
|
|
padding: 0.5rem 1rem;
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.notFoundMessage {
|
|
color: red;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
margin: 1rem;
|
|
}
|
|
|
|
.infoText {
|
|
color: #555;
|
|
text-align: center;
|
|
margin: 1rem;
|
|
} |