.container{
    width:100vw;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--main_font);
}

h3{
    color: var( --font_color_02);
    margin-bottom: 10px;
}

input, button{
    width: 230px;
    height: 30px;
    margin-top: 12px;
    border: none;
    border-radius: 5px;
}

input{
    padding: 10px;
}

button{
    background-color: var(--color_01);
    border: none;
    transition: all .2s;
}

button:hover{
    background-color: var(--color_04);
    color: var(--color_01);
}

a{
    color: var(--font_color_01);
    margin-top: 30px;
    text-decoration: underline;
}

a:hover{
    color: var(--font_color_02);
}

p{
    color: var(--font_color_01);
    text-align: center;
    text-decoration: underline;
}

p:hover{
    color: var(--font_color_02);
}

.error_massage{
    margin-top: 20px;
    color: var(--font_color_02);
    text-decoration: none;
}

h5{
    font-size: large;
    color: rgb(255, 255, 255);
    text-align: center;
    text-transform: capitalize;
    font-family: var(--main_font) ;
}

.links{
    
    text-align: center;
    margin-top: 15px;
}

/* Mobile Devices */
@media only screen and (max-width: 480px) {
    /* Styles for small screens */
    .error_massage{
       font-size: small;
       margin: 20px;
    }
  }
  
  /* Tablets and Large Phones */
  @media only screen and (min-width: 481px) and (max-width: 768px) {
    /* Styles for medium screens */
  }
  
  /* Small Laptops and Tablets */
  @media only screen and (min-width: 769px) and (max-width: 1024px) {
    /* Styles for large screens */
  }
  
  /* Desktops and Large Laptops */
  @media only screen and (min-width: 1025px) and (max-width: 1200px) {
    /* Styles for extra large screens */
  }
  
  /* Widescreen Monitors */
  @media only screen and (min-width: 1201px) {
    /* Styles for extra extra large screens */
  }