@import url('../../css/variables.css');

body {
    margin: 0;
    padding: 0;
    display: flex; 
    justify-content: center; 
    background-color: #f1f2f2;
    font-family: var(--smallfont);
}

.login-container{
    margin-top: 100px;
}
h1{
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    font-family: var(--bigfont);
    text-transform: uppercase;
}
form{
    display: flex;
    flex-direction: column;
    max-width: 400px;
}
form div{
    margin-top: 15px;
}

form input{
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    border: none;
    background-color: rgb(238, 232, 232);
}

.forgot-password{
    font-size: 14px;
}

form button{
    padding: 12px;
    width: 50%;
    cursor: pointer;
    font-size: 16px;
    border: none;
}
a{
    color: rgb(62 148 196);
    text-decoration: none;
}
a:visited{
    color: rgb(62 148 196);    
}
.terms{
    font-size: 14px;
    text-align: center;
}

.all-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

ul{
    list-style: none;
    text-align: center;
    padding: 0;
    color: red;
}

.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;     /* opcional, para centrar horizontal */
}

.pre-text {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word; /* rompe palabras largas */
  white-space: normal;
  flex-shrink: 1;          /* permite encogerse dentro del flex */
  text-align: center;      /* opcional, si querés centrado */
}
