
.form-container {
    width: 320px;
    border-radius: 0.75rem;
    background-color: white;
    padding: 3rem;
    border: rgba(229, 231, 235, 1) solid 2px; /* hellgrau */
    color: rgba(17, 24, 39, 1); /* dunkler Text */
}
  
.title {
    text-align: center;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: rgba(31, 41, 55, 1); /* dunkles Grau */
}
  
.form {
    margin-top: 1.5rem;
}
  
.input-group {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
  
.input-group label {
    display: block;
    color: rgba(75, 85, 99, 1); /* mittleres Grau */
    margin-bottom: 4px;
}
  
.input-group input {
    width: 90%;
    border-radius: 0.375rem;
    border: 1px solid rgba(209, 213, 219, 1);
    outline: 0;
    background-color: #f9fafb; /* sehr helles Grau */
    padding: 0.75rem 1rem;
    color: rgba(17, 24, 39, 1); /* dunkler Text */
}
  
.input-group input:focus {
    border-color: rgba(167, 139, 250, 1); /* Lila Highlight */
    background-color: white;
}
  
.forgot {
    display: flex;
    justify-content: center;
    font-size: 0.75rem;
    line-height: 1rem;
    color: rgba(107, 114, 128, 1);
    margin: 8px 0 14px 0;
}
  
.forgot a, .signup a {
    color: rgba(59, 130, 246, 1); /* Blau */
    text-decoration: none;
    font-size: 14px;
}
  
.forgot a:hover, .signup a:hover {
    text-decoration: underline rgba(59, 130, 246, 1);
}
  
.sign {
    display: block;
    width: 100%;
    background-color: rgba(167, 139, 250, 1);
    padding: 0.75rem;
    text-align: center;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}
  
.sign:hover {
    scale: 1.05;
    background-color: rgba(139, 92, 246, 1);
}
  
.social-message {
    display: flex;
    align-items: center;
    padding-top: 1rem;
}
  
.line {
    height: 1px;
    flex: 1 1 0%;
    background-color: rgba(229, 231, 235, 1);
}
  
.social-message .message {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgba(107, 114, 128, 1);
}
  
.social-icons {
    display: flex;
    justify-content: center;
}
  
.social-icons .icon {
    border-radius: 0.125rem;
    padding: 0.75rem;
    border: none;
    background-color: transparent;
    margin-left: 8px;
}
  
.social-icons .icon svg {
    height: 1.25rem;
    width: 1.25rem;
    fill: rgba(55, 65, 81, 1); /* dunkler statt weiß */
}
  
.signup {
    text-align: center;
    font-size: 0.75rem;
    line-height: 1rem;
    color: rgba(107, 114, 128, 1);
}
  
.verify-container {
    display: flex;
    flex-direction: row;
}
  
.verify-container button {
    border-radius: 0.375rem;
    border: 1px solid rgba(209, 213, 219, 1);
    outline: 0;
    background-color: #f3f4f6;
    color: rgba(17, 24, 39, 1);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
  
.verify-container button:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 6px;
    transform: translateY(-2px);
    background-color: white;
}
