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

57 lines
846 B
CSS
Raw Normal View History

2025-10-08 12:01:52 -06:00
.inscripcion {
position: relative;
top: 0;
background-color: #ffffff;
width: 100%;
2026-03-03 17:36:06 -06:00
max-width: 600px;
2025-10-08 12:01:52 -06:00
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-02-27 19:15:56 -06:00
.restarPass {
2026-02-24 18:29:42 -06:00
margin-top: 3rem;
2026-01-16 14:47:32 -06:00
height: fit-content;
2025-10-08 12:01:52 -06:00
}
2026-03-03 17:36:06 -06:00
@media(max-height:800px) {
.firstPartInformation {
max-width: 320px;
}
2026-02-27 19:15:56 -06:00
.inscripcion {
2026-03-03 17:36:06 -06:00
max-width: 400px;
2026-02-27 19:15:56 -06:00
padding: 0.5rem;
margin-top: 0.5rem;
}
.restarPass {
margin-top: 2rem;
}
}
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-02-27 19:15:56 -06:00
.restarPass {
2026-01-16 14:47:32 -06:00
margin-top: 0;
}
}