.link:hover {
    text-decoration: underline;
}
.form-container .btn {
    width: 100%;
    height: 55px;
    margin: 30px auto 10px;
    font-size: 22px;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    letter-spacing: 0.15em;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    height: 55px;
    padding: 0 20px 0 55px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.form-control:focus {
    outline: none;
    border: 1px solid var(--color-primary);
}

.form-group.email::before {
    content: '';
    position: absolute;
    background: url('/assets/icons/email.svg') no-repeat center center;
    background-size: contain;
    width: 20px;
    height: 20px;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.form-group.password::before {
    content: '';
    position: absolute;
    background: url('/assets/icons/password.svg') no-repeat center center;
    background-size: contain;
    width: 20px;
    height: 20px;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.sign-find {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: #666;
    font-size: 14px;
}