Files
front-AT/app/(private)/Inscripcion/inscripcion.css
T
2026-03-03 17:36:06 -06:00

57 lines
846 B
CSS

.inscripcion {
position: relative;
top: 0;
background-color: #ffffff;
width: 100%;
max-width: 600px;
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;
}
.restarPass {
margin-top: 3rem;
height: fit-content;
}
@media(max-height:800px) {
.firstPartInformation {
max-width: 320px;
}
.inscripcion {
max-width: 400px;
padding: 0.5rem;
margin-top: 0.5rem;
}
.restarPass {
margin-top: 2rem;
}
}
@media (max-width: 800px) {
.containeInformation {
flex-direction: column;
justify-content: center;
align-items: center;
}
.restarPass {
margin-top: 0;
}
}