Files
front-AT/app/(private)/Inscripcion/inscripcion.css
T

40 lines
629 B
CSS
Raw Normal View History

2025-10-08 12:01:52 -06:00
.inscripcion {
position: relative;
top: 0;
background-color: #ffffff;
width: 100%;
max-width: 700px;
border-radius: 4px;
padding: 1rem;
margin-top: 1rem;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.containeInformation {
display: flex;
gap: 10px;
width: 100%;
}
.firstPartInformation {
display: flex;
flex-direction: column;
width: 100%;
max-width: 450px;
}
2026-01-16 14:47:32 -06:00
.restarPass{
margin-top: 2rem;
height: fit-content;
2025-10-08 12:01:52 -06:00
}
@media (max-width: 800px) {
.containeInformation {
flex-direction: column;
2026-01-16 14:47:32 -06:00
justify-content: center;
align-items: center;
2025-10-08 12:01:52 -06:00
}
2026-01-16 14:47:32 -06:00
.restarPass{
margin-top: 0;
}
}