*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

.container-register{
    position: relative;
    height:100vh;
    border: 2px solid grey;
}

.centered-vertical{
    min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
  min-height: 100vh; /* These two lines are counted as one :-)       */

  display: flex;
  align-items: center;
}

.image-card-size{
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
}

.card-size{
    height: 450px;
    max-height: 450px;
}

.margin-top-20{
    margin-top: 20px;
    
}