/** {*/
/*    box-sizing: border-box;*/
/*    font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;*/
/*    font-size: 16px;*/
/*}*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');



body {
    margin-bottom: 70px;
    background-color: #ffffff;
    color: #333;
    font-family:'Poppins', sans-serif;
   
}

.container-fluid{
    margin-top: 60px;
    margin-left: 40px;
}

.row{
   
}

@media (max-width: 800px) {
    .flex-container {
        flex-direction: column;
    }
}

.login {
    width: 400px;
    background-color: #ffffff;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
    margin: 100px auto;
}
.login h1 {
    text-align: center;
    color: #5b6574;
    font-size: 24px;
    padding: 20px 0 20px 0;
    border-bottom: 1px solid #dee0e4;
}
.login form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
    margin-left: 30px;
  

}
.login form label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #3274d6;
    color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"] {
    width: 310px;
    height: 50px;
    border: 1px solid #dee0e4;
    margin-bottom: 20px;
    padding: 0 15px;
}
.login form input[type="submit"] {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background-color: #3274d6;
    border: 0;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.2s;
}
.login form input[type="submit"]:hover {
    background-color: #2868c7;
    transition: background-color 0.2s;
}
/* login en register Button */
    /* Button default */
    .styled-button {
        background-color: #F675A8;
       color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
    }

    /* Hover effect */
        .styled-button:hover {
         background-color: #f55587;
        }

    /* Active/focus effect (when the button is clicked or focused) */
    .styled-button:active, .styled-button:focus {
      background-color: #F675A8;
     outline: none;
    }

/* text-input */
    .styled-text-imput {
     padding: 10px;
     border: 1px solid #ccc;
     border-radius: 5px;
     font-size: 16px;
     color: #333;
    }

    /* Focus effect (when the input field is clicked or focused) */
    .styled-text-imput:focus {
     outline: none;
     border-color: #f55587;
     box-shadow: 0 0 5px rgb(245, 85, 135);
    }