.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 6px;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
    color: #FFFFFF;
}

.form-group input {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    outline: none;
    color: #FFFFFF;
    font-size: 15px;
    transition: 0.3s ease;
}

.form-group input:focus {
    border-color: #A3E635;
    box-shadow: 0 0 10px rgba(163, 230, 53, 0.15);
}

.password-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.password-wrapper i {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}