.detail-main {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.far-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.login-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 2rem;
    max-width: 60%;
    border-radius: 1rem;
    height: fit-content;
}

.login-container > h3 {
    margin-top: 0;
    margin-bottom: 4rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
    margin-bottom: 3rem;
}

.input-container {
    display: flex;
    flex-direction: column;
}

.login-input {
    outline: none;
    border: none;
    border-bottom: 1px solid #949494;
    max-width: 95%;
}

.login-input:hover {
    border-bottom: 1px solid #212121;
}

.login-input:focus
.login-input:focus-visible {
    border-bottom: 2px solid #212121;
}


/* for registration page */
.password-indicator div {
    background-color: #48cd3e;
    height: 100%;
}

.password-indicator {
    background-color: #d2d2d2;
    height: 0.3em;
    width: 100%;
}

.password-strength {
    margin: 15px;
}

.password-strength-text {
    float: right;
    font-weight: bold;
}

.password-strength-title {
    display: inline;
}

.green {
    color: white;
    background-color: green;
}

.yellow {
    color: white;
    background-color:  #d7bc2b;
}

.red {
    color: white;
    background-color: red;
}

.grey {
    background-color: #d2d2d2;
}
