body {
padding: 15px;
display: flex;
flex-direction: column;
align-items: center;
  background-image: var(--zebra-pattern2);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.sesion_body {
  background-image: var(--eyes-pattern2);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.restablecer_body{
  background-image: var(--triangle-pattern2);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.form_header {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}
.header_title {
    font-family: Akatab-Black;
    background-color: black;
    color: white;
    border-radius: 15px;
    padding: 5px;
    text-decoration: none;
    font-size: 30px;
    transition: all 0.5s ease;
}

.header_title:hover{
    transform: scale(1.1);
}

.sesion_title {
    color: black;
    background-color: white;
    text-decoration: none;
    font-size: 30px;
}

.restablecer_title {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 30px;
}


.register_form, .sesion_form {
    margin-top: -30px;
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 15px;
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.389);
}

.text_input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 5px;
    font-family: Akatab-Regular;
    border: 1px solid rgba(72, 71, 71, 0.466);
    transition: all 0.5s;
      outline: none;
}
.text_input:focus {
  border-color: var(--yellow);
}

.link_contraseña{
    font-family: Akatab-Regular;
    text-decoration: underline;
    text-decoration-color: black;
    color: black;
}

.link_contraseña:hover{
    color: var(--yellow);
    text-decoration-color: var(--yellow);
}


label {
    font-family: Akatab-Medium;
    align-self: flex-start;
}

.form_titulo {
    text-align: center;
    margin-bottom: 1em;
    font-family: Akatab-Bold;
}




p {
    font-family: Akatab-Regular;
    text-align: center;
    position: relative;
}

p::after {
    content: '';
    position: absolute;
    width: 50px;
    border: 1px solid black;
    bottom: 10px;
    right: -60px;
}

p::before {
    content: '';
    position: absolute;
    width: 50px;
    border: 1px solid black;
    bottom: 10px;
    left: -60px;
}


.submit_button {
    margin-top: 10px;
    width: 100%;
    font-family: Akatab-Bold;
    border-radius: 8px;
    padding: 10px;
    transition: all 0.5s;
    background-color: black;
    color: white;
    border: none;
    font-size: 18px;
}

.submit_button:hover {
background-color: var(--yellow);
color: var(--black);
}

.g_container {
    position: relative;
    width: 80%;
    background-color: black;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    transition: background-color 0.5s ease;
    padding: 10px;
    .google_icon{
        position: absolute;
        left: 3px;
        bottom: 2px;
        background-color: white;
        border-radius: 10px;
    }
}

.google_bt {
    font-family: Akatab-Bold;
    text-decoration: none;
    color: white;
    font-size: 15px;
    margin-right: -15px;
}

.g_container:hover {
    background-color: rgb(40, 40, 40);
}

.error_content {
    padding: 5px;
    background-color: rgb(252, 144, 144);
    border: 1px solid rgb(252, 144, 144);
    border-radius: 5px;
    color: red;
    font-family: Akatab-Regular;
}

.mensaje_content {
    background-color: rgb(145, 255, 145);
        color: green;
        border: 1px solid rgb(145, 255, 145);
}

/*RESTABLECER CLAVE STYLE FORMULARIO */
.restablecer_form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    width: 50%;
    border-radius: 15px;
    padding: 10px;
    gap: 15px;
}
.restablecer_form_title {
    color: white;
    font-family: Akatab-Bold;
}
.restablecer_mail {
    width: 80%;
    box-sizing: border-box;
    padding: 10px;
    font-family: Akatab-Bold;
    font-size: 15px;
    text-align: center;
    border-radius: 10px;
    border: none;
}

.restablecer_submit {
    width: 50%;
    padding: 10px;
    background-color: var(--yellow);
    font-family: Akatab-Bold;
    font-size: 20px;
    border-radius: 10px;
    border: none;
    transition: all 0.5s ease;
}


.restablecer_submit:hover {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border: 3px solid var(--yellow);
}


.restablecer_info {
    color: var(--yellow);
}

.label_res {
    text-align: center;
    font-family: Akatab-Bold;
    color: white;
    align-self: center;
}
.buton_advance {
    text-decoration: none;
    color: black;
    font-family: Akatab-Bold;
    padding: 10px;
    border-radius: 10px;
    background-color: white;
}

