.input-container{
    color:black;
    width: 300px;
    border: 1px solid black;
    padding: 1em 2em;
    background-color: white;
    border-radius: 1em;
}
#login{
    display:block;
}
#registration{
    display:none;
}
.input-container h2{
    text-align: center;
}

.label-row {
    display: flex;
    flex-wrap: nowrap;
    align-items:center;
    justify-content: space-between;
}
.label-row img{
    margin-right: 0.5em;    
}

label {
    white-space: nowrap;
    display:block;
    margin-bottom: 0px;
    color: #555555;
    font-weight: 600;
    font-size: 14px;
}
input{ 
    width:100%;   
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box; /* Keeps padding inside the width */
    font-size: 14px;
    transition: border-color 0.3s ease;
}
.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    text-align:center;
}

.tooltip{
  display:flex;
  height:100%;
  justify-content: end;
  cursor: pointer;
}



.tooltiptext {
  visibility: hidden;
  border: 2px black solid;
  background-color: #2a323d;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  width: 200px;
  padding: 0em 1em;
}

@media only screen and (max-width: 768px) {
.content{
    padding:0px;
    width:100%;
    display:flex;
    align-items: flex-start;
    justify-content: space-around;

}
.left{
    display:none;
}
}